From 1d7b76e4cb7485ceede1fc5e5e0e6edd0a1b8f57 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Mon, 14 May 2007 00:32:04 +0000 Subject: [PATCH] Fix reference leak git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@46012 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/src/helpers.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/wxPython/src/helpers.cpp b/wxPython/src/helpers.cpp index af74e074f3..ce05ffbaa6 100644 --- a/wxPython/src/helpers.cpp +++ b/wxPython/src/helpers.cpp @@ -831,6 +831,7 @@ void wxPyOORClientData_dtor(wxPyOORClientData* self) { //Py_INCREF(deadObjectClass); Py_DECREF(klass); Py_DECREF(name); + Py_DECREF(dict); } }