[Bug general/30975] elfutils incorrectly reports core files with non-contiguous segments

2023-11-23 Thread pablogsal at gmail dot com
https://sourceware.org/bugzilla/show_bug.cgi?id=30975 --- Comment #6 from Pablo Galindo Salgado --- Hi, I can confirm that this indeed fixes the issue. Thanks to everyone involved. Fantastic work! -- You are receiving this mail because: You are on the CC list for the bug.

[Bug general/30975] elfutils incorrectly reports core files with non-contiguous segments

2023-11-23 Thread amerey at redhat dot com
https://sourceware.org/bugzilla/show_bug.cgi?id=30975 --- Comment #7 from Aaron Merey --- (In reply to Pablo Galindo Salgado from comment #6) > Hi, I can confirm that this indeed fixes the issue. Thanks to everyone > involved. Fantastic work! Thanks Pablo, glad to hear! -- You are receiving th

[PATCH] libelf: check decompressed ZSTD size

2023-11-23 Thread Aleksei Vetrov
Decompression functions like __libelf_decompress_zlib check that decompressed data has the same size as it was declared in the header (size_out argument). The same check is now added to __libelf_decompress_zstd to make sure that the whole allocated buffer is initialized. * libelf/elf_compress.

Re: [PATCH] libelf: check decompressed ZSTD size

2023-11-23 Thread Mark Wielaard
Hi Aleksei, On Thu, Nov 23, 2023 at 03:31:47PM +, Aleksei Vetrov wrote: > Decompression functions like __libelf_decompress_zlib check that > decompressed data has the same size as it was declared in the header > (size_out argument). The same check is now added to > __libelf_decompress_zstd to