From 770291b9ea1ec03d98b6bae4fd2a2d3f0091be41 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 16 Jun 2007 13:57:39 +0000 Subject: missing decref.. win Window.RedrawAll() pointed out by ken --- source/blender/python/api2_2x/Window.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/blender/python/api2_2x/Window.c b/source/blender/python/api2_2x/Window.c index 35b26051cf9..5538d9d3d88 100644 --- a/source/blender/python/api2_2x/Window.c +++ b/source/blender/python/api2_2x/Window.c @@ -425,7 +425,10 @@ PyObject *M_Window_Redraw( PyObject * self, PyObject * args ) /*****************************************************************************/ static PyObject *M_Window_RedrawAll( PyObject * self, PyObject * args ) { - return M_Window_Redraw( self, Py_BuildValue( "(i)", -1 ) ); + PyObject *arg = Py_BuildValue( "(i)", -1 ); + PyObject *ret = M_Window_Redraw( self, arg ); + Py_DECREF(arg); + return ret; } /*****************************************************************************/ -- cgit v1.2.3