1
0
mirror of https://git.tukaani.org/xz.git synced 2026-02-25 21:38:06 +00:00

liblzma: Fix a copy-paste error in commented-out code

Fixes: https://github.com/dotnet/runtime/pull/124003#discussion_r2841960994
Fixes: 96b663f67c0e ("liblzma: Refactor CRC comments.")
This commit is contained in:
Lasse Collin 2026-02-25 00:00:49 +02:00
parent 4e76651dba
commit 5553509f1a
No known key found for this signature in database
GPG Key ID: 38EE757D69184620

View File

@ -182,7 +182,7 @@ lzma_crc32(const uint8_t *buf, size_t size, uint32_t crc)
// See crc32_dispatch(). This would be the alternative which uses
// locking and doesn't use crc32_dispatch(). Note that on Windows
// this method needs Vista threads.
mythread_once(crc64_set_func);
mythread_once(crc32_set_func);
#endif
*/
return crc32_func(buf, size, crc);