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:
authorLukas Tönne <lukas.toenne@gmail.com>2015-12-04 19:14:33 +0300
committerLukas Tönne <lukas.toenne@gmail.com>2015-12-04 19:14:33 +0300
commit50f17db6410b4947340d707ceb3112c97b2db658 (patch)
tree5e35b6ef480ff65865fc07e0090750f8ad5264cd /source/blender/makesrna/intern/rna_nodetree.c
parentab4325c07a397cf06dc0c46a992cf0d7eb2914c5 (diff)
Fix for too small array of function pointers in node RNA registration.
Diffstat (limited to 'source/blender/makesrna/intern/rna_nodetree.c')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 56b4b3ea8c7..c10fe52bb29 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -1349,7 +1349,7 @@ static bNodeType *rna_Node_register_base(Main *bmain, ReportList *reports, Struc
PointerRNA dummyptr;
FunctionRNA *func;
PropertyRNA *parm;
- int have_function[9];
+ int have_function[10];
/* setup dummy node & node type to store static properties in */
memset(&dummynt, 0, sizeof(bNodeType));