diff options
author | Tom Tromey <tromey@redhat.com> | 2013-05-30 17:17:25 +0000 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-05-30 17:17:25 +0000 |
commit | 54f72dcc36781bdb55aa8347635577219c9230a0 (patch) | |
tree | a9bd63ed55d3b93a800c92091a709033bb03b0fe /gdb | |
parent | af1c6971291cbc55ad9f3dc1dec7fd86f7f5be2f (diff) | |
download | gdb-54f72dcc36781bdb55aa8347635577219c9230a0.zip gdb-54f72dcc36781bdb55aa8347635577219c9230a0.tar.gz gdb-54f72dcc36781bdb55aa8347635577219c9230a0.tar.bz2 |
fix py-prettyprint.c
print_children, in py-prettyprint.c, could call do_cleanups twice on
the same cleanup.
* python/py-prettyprint.c (print_children): Remove extra
do_cleanups call.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/python/py-prettyprint.c | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index d5a5452..08f247c 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,5 +1,10 @@ 2013-05-30 Tom Tromey <tromey@redhat.com> + * python/py-prettyprint.c (print_children): Remove extra + do_cleanups call. + +2013-05-30 Tom Tromey <tromey@redhat.com> + * python/py-frame.c (frapy_read_var): Call do_cleanups along all return paths. diff --git a/gdb/python/py-prettyprint.c b/gdb/python/py-prettyprint.c index 8fa2f42..47e9826 100644 --- a/gdb/python/py-prettyprint.c +++ b/gdb/python/py-prettyprint.c @@ -630,8 +630,6 @@ print_children (PyObject *printer, const char *hint, local_opts.addressprint = 0; val_print_string (type, encoding, addr, (int) length, stream, &local_opts); - - do_cleanups (inner_cleanup); } else if (gdbpy_is_string (py_v)) { |