2011-02-26 Michael Snyder <msnyder@vmware.com>

* breakpoint.c (reattach_breakpoints): Avoid resource leak (ui_file).
This commit is contained in:
Michael Snyder 2011-02-27 01:54:30 +00:00
parent 66fd3b1e63
commit 86b887dff0
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,7 @@
2011-02-26 Michael Snyder <msnyder@vmware.com>
* breakpoint.c (reattach_breakpoints): Avoid resource leak (ui_file).
* maint.c (maintenance_do_deprecate): Plug a memory leak.
* dwarf2loc.c (insert_bits): Avoid shadowing a function param

View File

@ -1989,7 +1989,7 @@ reattach_breakpoints (int pid)
struct cleanup *old_chain;
struct bp_location *bl, **blp_tmp;
int val;
struct ui_file *tmp_error_stream = mem_fileopen ();
struct ui_file *tmp_error_stream;
int dummy1 = 0, dummy2 = 0;
struct inferior *inf;
struct thread_info *tp;
@ -2003,6 +2003,7 @@ reattach_breakpoints (int pid)
inferior_ptid = tp->ptid;
tmp_error_stream = mem_fileopen ();
make_cleanup_ui_file_delete (tmp_error_stream);
ALL_BP_LOCATIONS (bl, blp_tmp)