Merge pull request #255 from sergachev/fix-crc32

fix crc32
This commit is contained in:
enjoy-digital 2019-09-09 13:38:29 +02:00 committed by GitHub
commit a7b5c18523
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -68,7 +68,6 @@ static const unsigned int crc_table[256] = {
unsigned int crc32(const unsigned char *buffer, unsigned int len)
{
return 0;
unsigned int crc;
crc = 0;
crc = crc ^ 0xffffffffL;