fix py-prettyprint.c
authorTom Tromey <tromey@redhat.com>
Thu, 30 May 2013 17:17:25 +0000 (17:17 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 30 May 2013 17:17:25 +0000 (17:17 +0000)
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.

gdb/ChangeLog
gdb/python/py-prettyprint.c

index d5a5452..08f247c 100644 (file)
@@ -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.
 
index 8fa2f42..47e9826 100644 (file)
@@ -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))
        {