From 1d84b6bb3c2067c25c1a9a2b64272b641c9b00c9 Mon Sep 17 00:00:00 2001 From: Joshua Leung Date: Wed, 11 Nov 2009 10:51:40 +0000 Subject: Nodes Editor + other warning fixes: * Added 'active node' panel for the Nodes Editor. This panel, in the NKEY region, shows the settings for the active node. Included in this panel is a field used for editing the unique-name of the node too. * Fixed a number of uninitialised vars warnings that I missed in previous commit... --- source/blender/python/intern/bpy_operator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/python/intern/bpy_operator.c') diff --git a/source/blender/python/intern/bpy_operator.c b/source/blender/python/intern/bpy_operator.c index 1ae0a40ce16..b1577969a22 100644 --- a/source/blender/python/intern/bpy_operator.c +++ b/source/blender/python/intern/bpy_operator.c @@ -153,7 +153,7 @@ static PyObject *pyop_as_string( PyObject * self, PyObject * args) int all_args = 1; int error_val= 0; - char *buf; + char *buf = NULL; PyObject *pybuf; bContext *C = BPy_GetContext(); -- cgit v1.2.3