Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2007-08-16 16:55:40 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-08-16 16:55:40 +0400
commit5a9d5a8ce7157f97444bf6621f609804d7dc3f62 (patch)
treec44ab94ff3ebefc6ef94184179f74483728f5893 /source/blender/python/api2_2x/rgbTuple.c
parentc78e6d987b7f455184359cf044a282a5f0856d14 (diff)
material leak fix from stable tree
Diffstat (limited to 'source/blender/python/api2_2x/rgbTuple.c')
-rw-r--r--source/blender/python/api2_2x/rgbTuple.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/rgbTuple.c b/source/blender/python/api2_2x/rgbTuple.c
index daa6950536f..a49f8dd9d9e 100644
--- a/source/blender/python/api2_2x/rgbTuple.c
+++ b/source/blender/python/api2_2x/rgbTuple.c
@@ -89,7 +89,7 @@ PyTypeObject rgbTuple_Type = {
sizeof( BPy_rgbTuple ), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
- NULL, /* tp_dealloc */
+ ( destructor )PyObject_Del, /* tp_dealloc */
0, /* tp_print */
( getattrfunc ) rgbTuple_getAttr, /* tp_getattr */
( setattrfunc ) rgbTuple_setAttr, /* tp_setattr */