* python/python.c (before_prompt_hook): Add cleanup to
authorTom Tromey <tromey@redhat.com>
Mon, 20 May 2013 20:13:28 +0000 (20:13 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 20 May 2013 20:13:28 +0000 (20:13 +0000)
decref 'hook'.

gdb/ChangeLog
gdb/python/python.c

index 443adaf..34a73f6 100644 (file)
@@ -1,5 +1,10 @@
 2013-05-20  Tom Tromey  <tromey@redhat.com>
 
+       * python/python.c (before_prompt_hook): Add cleanup to
+       decref 'hook'.
+
+2013-05-20  Tom Tromey  <tromey@redhat.com>
+
        * python/py-function.c (fnpy_init): Decref result of
        PyObject_GetAttrString.
 
index 3e2a852..90581e5 100644 (file)
@@ -900,6 +900,8 @@ before_prompt_hook (const char *current_gdb_prompt)
       if (hook == NULL)
        goto fail;
 
+      make_cleanup_py_decref (hook);
+
       if (PyCallable_Check (hook))
        {
          PyObject *result;