Small update to crc32 function
This commit is contained in:
parent
18cb943090
commit
25a2ba7383
1 changed files with 2 additions and 2 deletions
|
@ -54,9 +54,9 @@ pub fn update(prev: u32, buf: &[u8]) -> u32
|
||||||
{
|
{
|
||||||
let mut crc = !prev;
|
let mut crc = !prev;
|
||||||
|
|
||||||
for byte in buf.iter()
|
for &byte in buf.iter()
|
||||||
{
|
{
|
||||||
crc = CRC32_TABLE[(crc as u8 ^ *byte) as usize] ^ (crc >> 8);
|
crc = CRC32_TABLE[((crc as u8) ^ byte) as usize] ^ (crc >> 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
!crc
|
!crc
|
||||||
|
|
Loading…
Add table
Reference in a new issue