summaryrefslogtreecommitdiff
path: root/gdb/dwarf2read.c
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>2013-07-22 17:53:55 +0000
committerTom Tromey <tromey@redhat.com>2013-07-22 17:53:55 +0000
commit5b0fded83d4885312076005ede47963fb33839f8 (patch)
tree607bcb61c7c096fbde5a6c6540ae46116d0adc54 /gdb/dwarf2read.c
parentf5e51af0f2a34738443164a68c0ccc93392eb379 (diff)
downloadgdb-5b0fded83d4885312076005ede47963fb33839f8.tar.gz
fix dwarf_decode_line_header
dwarf_decode_line_header has one return that is missing a call to do_cleanups. This patch adds it. This was found using the cleanup checker. * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups on all return paths.
Diffstat (limited to 'gdb/dwarf2read.c')
-rw-r--r--gdb/dwarf2read.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
index 94727a734a8..70ab302fb31 100644
--- a/gdb/dwarf2read.c
+++ b/gdb/dwarf2read.c
@@ -15704,6 +15704,7 @@ dwarf_decode_line_header (unsigned int offset, struct dwarf2_cu *cu)
if (line_ptr + lh->total_length > (section->buffer + section->size))
{
dwarf2_statement_list_fits_in_line_number_section_complaint ();
+ do_cleanups (back_to);
return 0;
}
lh->statement_program_end = line_ptr + lh->total_length;