]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
variableScopeFix
authorgtsoul-tech <gtsoulkanakis@gmail.com>
Mon, 29 Apr 2024 10:28:16 +0000 (13:28 +0300)
committergtsoul-tech <gtsoulkanakis@gmail.com>
Mon, 29 Apr 2024 10:28:16 +0000 (13:28 +0300)
src/crc32.c

index c2f151192495148ee36e3fd0f48042f95b73ae3c..ca5b5feda4745a92ebe73e2f692a9b0dd52fa033 100644 (file)
@@ -542,7 +542,6 @@ u32 crc32c_sb8_64_bit(u32 running_crc, const unsigned char* p_buf,
 
     // Main aligned loop, processes eight bytes at a time.
 
-    u32 term1, term2;
     for (size_t li = 0; li < running_length/8; li++) {
         u32 block = *(const u32 *)p_buf;
         crc ^= block;