diff options
-rw-r--r-- | gdb/ChangeLog | 2 | ||||
-rw-r--r-- | gdb/python/py-breakpoint.c | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2181f35c80..13f9b162c1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,7 @@ 2011-03-11 Michael Snyder <msnyder@vmware.com> + * python/py-breakpoint.c (bppy_get_commands): Fix memory leak. + * top.c (set_verbose): Assert showcmd was found. 2011-03-11 Maxim Grigoriev <maxim2405@gmail.com> diff --git a/gdb/python/py-breakpoint.c b/gdb/python/py-breakpoint.c index bfad002d1a..c8308b99a9 100644 --- a/gdb/python/py-breakpoint.c +++ b/gdb/python/py-breakpoint.c @@ -489,12 +489,12 @@ bppy_get_commands (PyObject *self, void *closure) print_command_lines (uiout, breakpoint_commands (bp), 0); } ui_out_redirect (uiout, NULL); - cmdstr = ui_file_xstrdup (string_file, &length); GDB_PY_HANDLE_EXCEPTION (except); + cmdstr = ui_file_xstrdup (string_file, &length); + make_cleanup (xfree, cmdstr); result = PyString_Decode (cmdstr, strlen (cmdstr), host_charset (), NULL); do_cleanups (chain); - xfree (cmdstr); return result; } |