mirror of
https://github.com/kdave/btrfs-progs
synced 2025-04-06 17:21:57 +00:00
btrfs-progs: crc32: use fallback implementation for unaligned buffers
ASAN reports that at some point the crc function gets an unaligned buffer. It's the optimized intel version that casts char to ulong, the buffer is the embedded filename in the directory items. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
0bd0d9c062
commit
92847b5cd6
@ -218,5 +218,9 @@ u32 __crc32c_le(u32 crc, unsigned char const *data, size_t length)
|
||||
|
||||
u32 crc32c_le(u32 crc, unsigned char const *data, size_t length)
|
||||
{
|
||||
/* Use by-byte access for unaligned buffers */
|
||||
if ((unsigned long)data % sizeof(unsigned long))
|
||||
return __crc32c_le(crc, data, length);
|
||||
|
||||
return crc_function(crc, data, length);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user