This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 22/28] remove erroneous incref from gdbpy_initialize_py_events


The checker noticed a bogus incref in gdbpy_initialize_py_events.

	* python/py-evts.c (gdbpy_initialize_py_events): Don't
	incref the module.
---
 gdb/python/py-evts.c | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/gdb/python/py-evts.c b/gdb/python/py-evts.c
index bb384e3..4828bda 100644
--- a/gdb/python/py-evts.c
+++ b/gdb/python/py-evts.c
@@ -81,9 +81,6 @@ gdbpy_initialize_py_events (void)
   if (add_new_registry (&gdb_py_events.new_objfile, "new_objfile") < 0)
     return -1;
 
-#ifndef IS_PY3K
-  Py_INCREF (gdb_py_events.module);
-#endif
   if (PyModule_AddObject (gdb_module,
                           "events",
                           (PyObject *) gdb_py_events.module) < 0)
-- 
1.8.1.4



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]