+2026-01-12 Maciej W. Rozycki <macro@redhat.com>
+
+ * objalloc.c (objalloc_free): Don't use the pointer passed if
+ null.
+
+2026-01-09 Jan Beulich <jbeulich@suse.com>
+
+ * testsuite/test-pexecute.c (main): Adjust a tracing fprintf().
+
2025-11-30 Jose E. Marchesi <jose.marchesi@oracle.com>
* simple-object-mach-o.c
{
struct objalloc_chunk *l;
+ /* Handle a nullptr as being a no-op. */
+ if (o == NULL)
+ return;
+
l = (struct objalloc_chunk *) o->chunks;
while (l != NULL)
{
const char *pex_run_err; \
if (trace) \
fprintf (stderr, "Line %d: running %s %s\n", \
- __LINE__, EXECUTABLE, ARGV[0]); \
+ __LINE__, EXECUTABLE, ARGV[1]); \
pex_run_err = pex_run (PEXOBJ, FLAGS, EXECUTABLE, ARGV, OUTNAME, \
ERRNAME, &err); \
if (pex_run_err != NULL) \