Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'zstd-linus-v6.7-rc2' of https://github.com/terrelln/linux

Pull Zstd fix from Nick Terrell:
"Only a single line change to fix a benign UBSAN warning"

* tag 'zstd-linus-v6.7-rc2' of https://github.com/terrelln/linux:
zstd: Fix array-index-out-of-bounds UBSAN warning

+1 -1
+1 -1
lib/zstd/common/fse_decompress.c
··· 312 312 313 313 typedef struct { 314 314 short ncount[FSE_MAX_SYMBOL_VALUE + 1]; 315 - FSE_DTable dtable[1]; /* Dynamically sized */ 315 + FSE_DTable dtable[]; /* Dynamically sized */ 316 316 } FSE_DecompressWksp; 317 317 318 318