Small update to crc32 function

This commit is contained in:
Mathijs van de Nes 2015-06-30 08:54:53 +02:00
parent 18cb943090
commit 25a2ba7383

View file

@ -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