fixed bug in crc32
This commit is contained in:
parent
a7b8b1286c
commit
654df2c05c
1 changed files with 1 additions and 0 deletions
1
crc32.c
1
crc32.c
|
@ -471,6 +471,7 @@ static void gf32_matrix_square (unsigned *square, unsigned *matrix) {
|
|||
}
|
||||
|
||||
unsigned compute_crc32_combine (unsigned crc1, unsigned crc2, int len2) {
|
||||
assert (len2 < (1 << 29));
|
||||
static int power_buf_initialized = 0;
|
||||
static unsigned power_buf[1024];
|
||||
int n;
|
||||
|
|
Loading…
Add table
Reference in a new issue