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>2009-11-18 16:14:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-11-18 16:14:49 +0300
commita62b3a534b055307c2bbd9707a1bcba0dbcbdb21 (patch)
tree54f062838b52bb2c2e3f83757cf8232d22fabd59
parentd3794d9f945d3d85394549e4570c38147a3283a1 (diff)
fix for own error in 24623, removed a memfree call,
printed lots of errors like this one exit dynstr_cstring len: 24 0x54c4cb0
-rw-r--r--source/blender/makesrna/intern/rna_access.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_access.c b/source/blender/makesrna/intern/rna_access.c
index 3e30827fad2..d9ef58058b0 100644
--- a/source/blender/makesrna/intern/rna_access.c
+++ b/source/blender/makesrna/intern/rna_access.c
@@ -2552,6 +2552,7 @@ char *RNA_path_from_ID_to_property(PointerRNA *ptr, PropertyRNA *prop)
if(ptrpath) {
path= BLI_sprintfN(is_rna ? "%s.%s":"%s[\"%s\"]", ptrpath, propname);
+ MEM_freeN(ptrpath);
}
else {
if(is_rna)