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-07-22 03:24:08 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-07-22 03:24:08 +0400
commit89792eb7eeccd1cc624e28338bc7beed12bd3c34 (patch)
treeb54f3aeae95c7e9f46049a2f56a14c10a393f561 /source/blender/python/api2_2x/Draw.c
parent74ca1781990bb0c56cdb0da54ed15414f30cb554 (diff)
fixed some bugs in Draw.c
* incorrect args to Draw.Create() would crash blender because it wasnt deallocating the value properly. * deallocation of an uninitialized button could also try and free uninitialized memory if the type happened to be a STRING. * removed the unused tooltip pointer from teh Draw.h's Button struct.
Diffstat (limited to 'source/blender/python/api2_2x/Draw.c')
-rw-r--r--source/blender/python/api2_2x/Draw.c36
1 files changed, 22 insertions, 14 deletions
diff --git a/source/blender/python/api2_2x/Draw.c b/source/blender/python/api2_2x/Draw.c
index 1d0107d3c3c..ea02fd57fe9 100644
--- a/source/blender/python/api2_2x/Draw.c
+++ b/source/blender/python/api2_2x/Draw.c
@@ -588,11 +588,15 @@ static PyObject *Button_repr( PyObject * self )
static PyObject *Button_richcmpr(PyObject *objectA, PyObject *objectB, int comparison_type)
{
+ PyObject *ret, *valA=NULL, *valB=NULL;
if (ButtonObject_Check(objectA))
- objectA = Button_getattr( objectA, "val" );
+ objectA = valA = Button_getattr( objectA, "val" );
if (ButtonObject_Check(objectB))
- objectB = Button_getattr( objectB, "val" );
- return PyObject_RichCompare(objectA, objectB, comparison_type);
+ objectB = valB = Button_getattr( objectB, "val" );
+ ret = PyObject_RichCompare(objectA, objectB, comparison_type);
+ Py_XDECREF(valA); /* Button_getattr created with 1 ref, we dont care about them now */
+ Py_XDECREF(valB);
+ return ret;
}
@@ -1003,21 +1007,24 @@ static PyObject *Method_Create( PyObject * self, PyObject * args )
char *newstr;
but = newbutton();
-
+ /* If this function dosnt sucseed this will need to be deallocated,
+ * make sure the type is NOT BSTRING_TYPE before deallocing -1 is ok.
+ * so we dont dealloc with an uninitialized value wich would be bad! */
if ( PyArg_ParseTuple( args, "fff", but->val.asvec, but->val.asvec+1, but->val.asvec+2 ) ) {
but->type = BVECTOR_TYPE;
- }
- else if ( PyArg_ParseTuple( args, "O!", &PyFloat_Type, &val ) ) {
+
+ } else if ( PyArg_ParseTuple( args, "O!", &PyFloat_Type, &val ) ) {
but->val.asfloat = (float)PyFloat_AS_DOUBLE(val);
but->type = BFLOAT_TYPE;
- }
- else if ( PyArg_ParseTuple( args, "O!", &PyInt_Type, &val ) ) {
+
+ } else if ( PyArg_ParseTuple( args, "O!", &PyInt_Type, &val ) ) {
but->val.asint = (int)PyInt_AS_LONG(val);
but->type = BINT_TYPE;
- }
- else if ( PyArg_ParseTuple( args, "s#", &newstr, &but->slen ) ) {
+
+ } else if ( PyArg_ParseTuple( args, "s#", &newstr, &but->slen ) ) {
if (but->slen + 1 > UI_MAX_DRAW_STR) {
- PyObject_DEL( (PyObject *) but );
+ but->type = -1;
+ Py_DECREF((PyObject *)but); /* will remove */
but = NULL;
PyErr_SetString( PyExc_TypeError, "string is longer then 399 chars");
} else {
@@ -1025,9 +1032,10 @@ static PyObject *Method_Create( PyObject * self, PyObject * args )
but->val.asstr = MEM_mallocN( but->slen + 1, "button string" );
BLI_strncpy( but->val.asstr, newstr, but->slen+1 );
}
- }
- else {
- PyObject_DEL( (PyObject *) but );
+
+ } else {
+ but->type = -1;
+ Py_DECREF((PyObject *)but); /* will remove */
but = NULL;
PyErr_SetString( PyExc_TypeError, "expected string, float, int or 3-float tuple argument" );
}