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:
authorStephen Swaney <sswaney@centurytel.net>2005-09-12 10:18:45 +0400
committerStephen Swaney <sswaney@centurytel.net>2005-09-12 10:18:45 +0400
commita4ca8267cf9be52945911553dca46a815dbba8ea (patch)
tree6a51a133d2b8cc7860a27865ab2c847341c083ad /source/blender/python/api2_2x/matrix.c
parent24ee7278b9c2ae7cd2f6fa546436e18200eb2ebf (diff)
bugfix: [ #3009 ] possible memory leak in Mathutils
fixed by patch [ #3013 ] patch for memleak in vector Submitted By: Ken Hughes (khughes)
Diffstat (limited to 'source/blender/python/api2_2x/matrix.c')
-rw-r--r--source/blender/python/api2_2x/matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/api2_2x/matrix.c b/source/blender/python/api2_2x/matrix.c
index c1f74239e4e..48517140988 100644
--- a/source/blender/python/api2_2x/matrix.c
+++ b/source/blender/python/api2_2x/matrix.c
@@ -837,5 +837,5 @@ PyObject *newMatrixObject(float *mat, int rowSize, int colSize, int type)
}else{ //bad type
return NULL;
}
- return (PyObject *) EXPP_incr_ret((PyObject *)self);
+ return (PyObject *) self;
}