From feb1472522ea3ff9c0456462f36ce2e29be29f28 Mon Sep 17 00:00:00 2001 From: Corinna Vinschen Date: Mon, 4 Mar 2013 15:09:46 +0000 Subject: [PATCH] * coff-pe-read.c (read_pe_exported_syms): Don't return without calling do_cleanup. --- gdb/ChangeLog | 5 +++++ gdb/coff-pe-read.c | 3 +++ 2 files changed, 8 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 848fa3d02c..f9d269f9f1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2013-03-04 Corinna Vinschen + + * coff-pe-read.c (read_pe_exported_syms): Don't return without + calling do_cleanup. + 2013-03-04 Luis Machado * tracepoint.c (build_traceframe_info): Add code for byte order. diff --git a/gdb/coff-pe-read.c b/gdb/coff-pe-read.c index f9537384cd..c930bacebf 100644 --- a/gdb/coff-pe-read.c +++ b/gdb/coff-pe-read.c @@ -379,6 +379,7 @@ read_pe_exported_syms (struct objfile *objfile) /* This is not a recognized PE format file. Abort now, because the code is untested on anything else. *FIXME* test on further architectures and loosen or remove this test. */ + do_cleanups (back_to); return; } @@ -392,6 +393,7 @@ read_pe_exported_syms (struct objfile *objfile) if (num_entries < 1) /* No exports. */ { + do_cleanups (back_to); return; } if (is_pe64) @@ -448,6 +450,7 @@ read_pe_exported_syms (struct objfile *objfile) if (export_size == 0) { /* Empty export table. */ + do_cleanups (back_to); return; } -- 2.34.1