diff options
author | Tom Tromey <tromey@redhat.com> | 2013-05-30 17:44:54 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-05-30 17:44:54 +0000 |
commit | 4e993a190a2602ee03f2dbad245d0c074e9b2362 (patch) | |
tree | 85601bded1fcf485ec89c2a4bb1c05c292b5c5ec /gdb/ChangeLog | |
parent | e3b76b4f446aeb82fdfd46185b624359d5490ec6 (diff) | |
download | gdb-4e993a190a2602ee03f2dbad245d0c074e9b2362.zip gdb-4e993a190a2602ee03f2dbad245d0c074e9b2362.tar.gz gdb-4e993a190a2602ee03f2dbad245d0c074e9b2362.tar.bz2 |
maintenance_expand_symtabs leaks a cleanup
It turns out that maintenance_expand_symtabs was missing a call to
do_cleanups. I found this using the cleanup checker.
* symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index fe96062..7c134f6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,9 @@ 2013-05-30 Tom Tromey <tromey@redhat.com> + * symmisc.c (maintenance_expand_symtabs): Call do_cleanups. + +2013-05-30 Tom Tromey <tromey@redhat.com> + * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from gdb_xml_create_parser_and_cleanup_1. Return a cleanup. Remove 'old_chain' argument. Add 'parser_result' argument. |