More memory leaks fixed - in IDProp, Bone.head, tail, matrix, ob.DupObjects (my fault) and in Effect module as well as a few others.

Also stopped using Py_BuildValue for strings, ints and floats.
This commit is contained in:
2007-05-26 04:39:31 +00:00
parent ea9b3dc387
commit 30dd4fafd1
19 changed files with 120 additions and 97 deletions

View File

@@ -1759,7 +1759,7 @@ PyObject *M_Mathutils_RotateEuler(PyObject * self, PyObject * args)
"Mathutils.RotateEuler(): expected euler type & float & string");
Euler_Rotate(Eul, Py_BuildValue("fs", angle, axis));
return EXPP_incr_ret(Py_None);
Py_RETURN_NONE;
}
//----------------------------------Mathutils.MatMultVec() --------------
//COLUMN VECTOR Multiplication (Matrix X Vector)