From 85a3d510781297711efa2c740fa59609dab0c108 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 21 Jan 2014 14:23:39 +1100 Subject: Fix for own refcount error in recent commit --- source/blender/python/intern/bpy_rna.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python') diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c index 16cedccf775..b8640f7208b 100644 --- a/source/blender/python/intern/bpy_rna.c +++ b/source/blender/python/intern/bpy_rna.c @@ -6274,7 +6274,7 @@ static PyObject *pyrna_srna_Subtype(StructRNA *srna) /* arg[1] (bases=...) */ PyTuple_SET_ITEM(args, 1, item = PyTuple_New(1)); - PyTuple_SET_ITEM(item, 0, py_base); + PyTuple_SET_ITEM(item, 0, py_base); Py_INCREF(py_base); /* arg[2] (dict=...) */ -- cgit v1.2.3