From d930d06e3fd1c821a020561a8cc583db005f7c10 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Thu, 13 Oct 2011 14:54:14 +0000 Subject: * python/py-breakpoint.c (gdbpy_breakpoint_deleted): Ensure GIL is always released. --- gdb/python/py-breakpoint.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'gdb/python') diff --git a/gdb/python/py-breakpoint.c b/gdb/python/py-breakpoint.c index 3dc0fca..87265e2 100644 --- a/gdb/python/py-breakpoint.c +++ b/gdb/python/py-breakpoint.c @@ -841,15 +841,15 @@ gdbpy_breakpoint_deleted (struct breakpoint *b) state = PyGILState_Ensure (); bp = get_breakpoint (num); - if (! bp) - return; - - bp_obj = bp->py_bp_object; - if (bp_obj) + if (bp) { - bp_obj->bp = NULL; - --bppy_live; - Py_DECREF (bp_obj); + bp_obj = bp->py_bp_object; + if (bp_obj) + { + bp_obj->bp = NULL; + --bppy_live; + Py_DECREF (bp_obj); + } } PyGILState_Release (state); } -- cgit v1.1