Re: [PATCH v2 0/5] Add support for MIPS

2023-11-08 Thread Ying Huang
Hi, 在 2023/11/3 19:56, Mark Wielaard 写道: > Hi Yimg, > > On Thu, 2023-11-02 at 14:55 +0800, Ying Huang wrote: >> This is a series of modifications about MIPS. >> Support src/readelf, strip, elflint, objdump related tools. > Thanks. What are the changes compared to v1? > https://patchwork.sourceware

[Bug general/31027] Remove asserts from library code

2023-11-08 Thread dichen at redhat dot com
https://sourceware.org/bugzilla/show_bug.cgi?id=31027 Di Chen changed: What|Removed |Added Assignee|unassigned at sourceware dot org |dichen at redhat dot com -- You are

[PATCH] elfutils: PR 30991 srcfiles tarball feature

2023-11-08 Thread Housam Alamour
* srclines.cxx: Introduce new option that places all the source files associated with a specified dwarf/elf file into a zip file and sends it to stdout. * run-srcfiles-self.sh: Added test-case for the new zip feature. * srcfiles.1, NEWS: Added documentation for the new zip feature Example: % ./s

[PATCH] libelf: Fix possible memory leak in elf_getdata_rawchunk

2023-11-08 Thread Mark Wielaard
If the rawchunk is not properly aligned we'll create a new buffer that is correctly aligned and put the data in that new buffer with memcpy or the conversion function. In such cases the rawchunk leaks because the new buffer is put into the Elf_Data_Chunk. * libelf/elf_getdata_rawchunk.c (e