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:
authorJoseph Eagar <joeedh@gmail.com>2006-12-01 06:04:36 +0300
committerJoseph Eagar <joeedh@gmail.com>2006-12-01 06:04:36 +0300
commit71da111613758d289209a5df64f722f8c0926767 (patch)
treebbd8775f4f68cb9d8c22babf16637bfdc4f44a3e /source/blender/blenkernel/intern/idprop.c
parentb36b940807011e0d85a0030933617ac6d0ec02bb (diff)
=IDProperties bugfix=
Another bug from the tracker, reported by Mike Stramba. A duplicated Py_XDECREF in the wrong place made assigning arrays from Vector objects not work. Also, fixed nasty bug in C API of idproperties (the function to look up a property from a group was broken). Fixed a memory leak too. In addition, made "del group['property']" delete properties from group; previously this would just crash (or at least it should have). Added a small addition to the example in the epydocs for IDGroup.
Diffstat (limited to 'source/blender/blenkernel/intern/idprop.c')
-rw-r--r--source/blender/blenkernel/intern/idprop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/idprop.c b/source/blender/blenkernel/intern/idprop.c
index 90de7edc7bc..0bcb6a87ba3 100644
--- a/source/blender/blenkernel/intern/idprop.c
+++ b/source/blender/blenkernel/intern/idprop.c
@@ -192,7 +192,7 @@ IDProperty *IDP_GetPropertyFromGroup(IDProperty *prop, char *name)
{
IDProperty *loop;
for (loop=prop->data.group.first; loop; loop=loop->next) {
- if (strcmp(prop->name, name)==0) return prop;
+ if (strcmp(loop->name, name)==0) return loop;
}
return NULL;
}