From 5c99f3886e8d5f7664663c7e944dd80d1c7589e4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 24 Sep 2010 03:24:15 +0000 Subject: fix for python refcounting leak, RNA_path_resolve_full now unsets the index if its not last. --- source/blender/makesrna/intern/rna_access.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source/blender/makesrna/intern/rna_access.c') diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c index ae44cb1db7c..275e0cc7360 100644 --- a/source/blender/makesrna/intern/rna_access.c +++ b/source/blender/makesrna/intern/rna_access.c @@ -3027,6 +3027,7 @@ int RNA_path_resolve_full(PointerRNA *ptr, const char *path, PointerRNA *r_ptr, if(nextptr.data) { curptr= nextptr; prop= NULL; /* now we have a PointerRNA, the prop is our parent so forget it */ + *index= -1; } else return 0; @@ -3069,6 +3070,7 @@ int RNA_path_resolve_full(PointerRNA *ptr, const char *path, PointerRNA *r_ptr, if(nextptr.data) { curptr= nextptr; prop= NULL; /* now we have a PointerRNA, the prop is our parent so forget it */ + *index= -1; } else return 0; -- cgit v1.2.3