From 0430e8cba970e103a67e6066b7475f1fd8bae184 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Mon, 20 May 2013 20:13:28 +0000 Subject: * python/python.c (before_prompt_hook): Add cleanup to decref 'hook'. --- gdb/python/python.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gdb/python') diff --git a/gdb/python/python.c b/gdb/python/python.c index 3e2a852..90581e5 100644 --- a/gdb/python/python.c +++ b/gdb/python/python.c @@ -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; -- cgit v1.1