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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-01-08 18:29:09 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-01-08 18:29:09 +0300
commit8140c76ac6142cd7182eacd866744017929a4a69 (patch)
tree0b41a636956ccddbec05ea9dcaf309343e956223 /source/blender/python/intern/bpy_rna.h
parentbebe874a5b80a1e698b3a9dc6aec0870540aed4b (diff)
RNA: fix crash in python code, forgot to update this part in a previous commit.
Diffstat (limited to 'source/blender/python/intern/bpy_rna.h')
-rw-r--r--source/blender/python/intern/bpy_rna.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/intern/bpy_rna.h b/source/blender/python/intern/bpy_rna.h
index 8f21e6d80c8..73272eac6e8 100644
--- a/source/blender/python/intern/bpy_rna.h
+++ b/source/blender/python/intern/bpy_rna.h
@@ -36,7 +36,7 @@ extern PyTypeObject pyrna_prop_Type;
typedef struct {
PyObject_VAR_HEAD /* required python macro */
PointerRNA ptr;
- IDProperty *properties; /* needed in some cases for RNA_pointer_create(), free when deallocing */
+ int freeptr; /* needed in some cases if ptr.data is created on the fly, free when deallocing */
} BPy_StructRNA;
typedef struct {