diff --git a/source/blender/python/generic/IDProp.c b/source/blender/python/generic/IDProp.c index 2339350823d..3af2fece258 100644 --- a/source/blender/python/generic/IDProp.c +++ b/source/blender/python/generic/IDProp.c @@ -480,18 +480,18 @@ static PyObject *BPy_IDGroup_IterItems(BPy_IDProperty *self) /* utility function */ static void BPy_IDGroup_CorrectListLen(IDProperty *prop, PyObject *seq, int len) { - int i, j; + int j; printf("ID Property Error found and corrected in BPy_IDGroup_GetKeys/Values/Items!\n"); /*fill rest of list with valid references to None*/ - for (j=i; jlen; j++) { + for (j=len; jlen; j++) { Py_INCREF(Py_None); PyList_SET_ITEM(seq, j, Py_None); } /*set correct group length*/ - prop->len = i; + prop->len = len; } PyObject *BPy_Wrap_GetKeys(IDProperty *prop)