Avoid double-free with debuginfod
authorTom Tromey <tromey@adacore.com>
Tue, 6 Dec 2022 19:07:12 +0000 (12:07 -0700)
committerTom Tromey <tromey@adacore.com>
Thu, 13 Apr 2023 19:58:35 +0000 (13:58 -0600)
commitf96328accde1e6302b62aa880675594618079cb3
tree4ed79fe1a3f483cdf92db1dd2d530658cb68f68e
parent546c7898dccb204eb56c8ed7c5b707c75de31b53
Avoid double-free with debuginfod

PR gdb/29257 points out a possible double free when debuginfod is in
use.  Aside from some ugly warts in the symbol code (an ongoing
issue), the underlying issue in this particular case is that elfread.c
seems to assume that symfile_bfd_open will return NULL on error,
whereas in reality it throws an exception.  As this code isn't
prepared for an exception, bad things result.

This patch fixes the problem by introducing a non-throwing variant of
symfile_bfd_open and using it in the affected places.

Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=29257
gdb/elfread.c
gdb/symfile.c
gdb/symfile.h