Issue 53588 in oss-fuzz: elfutils:fuzz-libelf: Timeout in fuzz-libelf

2024-04-30 Thread ClusterFuzz-External via monorail
Updates: Labels: ClusterFuzz-Verified Status: Verified Comment #1 on issue 53588 by ClusterFuzz-External: elfutils:fuzz-libelf: Timeout in fuzz-libelf https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=53588#c1 ClusterFuzz testcase 5208347720941568 is verified as fixed in htt

[PATCH] ar: Replace one alloca use by xmalloc

2024-04-30 Thread Mark Wielaard
This alloca use is inside a lexical block and is used to replace one element of argv. Use a function local variable, xmalloc and free to make memory usage pattern more clear. * src/ar.c (main): Move newp char pointer declaration up. Use xmalloc to allocate space. free at end of main. Sign