summaryrefslogtreecommitdiffstats
path: root/python/xml/py_xml.c
diff options
context:
space:
mode:
authorValery Febvre <vfebvre at easter-eggs.com>2004-07-25 15:16:48 +0000
committerValery Febvre <vfebvre at easter-eggs.com>2004-07-25 15:16:48 +0000
commitd792b018cf3234f88c0777274d7b7c9890166f5f (patch)
treeca5edd37ee57439eb5b1bacccc924549f1db19f8 /python/xml/py_xml.c
parent5435c3ea335214a72750b250dc8d498e46198649 (diff)
downloadlasso-d792b018cf3234f88c0777274d7b7c9890166f5f.tar.gz
lasso-d792b018cf3234f88c0777274d7b7c9890166f5f.tar.xz
lasso-d792b018cf3234f88c0777274d7b7c9890166f5f.zip
Oops, forget in previous commit
Diffstat (limited to 'python/xml/py_xml.c')
-rw-r--r--python/xml/py_xml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/xml/py_xml.c b/python/xml/py_xml.c
index bf5aa97f..814c2304 100644
--- a/python/xml/py_xml.c
+++ b/python/xml/py_xml.c
@@ -144,7 +144,7 @@ PyObject *node_export_to_soap(PyObject *self, PyObject *args) {
PyObject *node_get_attr_value(PyObject *self, PyObject *args) {
PyObject *node_obj;
const xmlChar *name;
- xmlChar *ret;
+ xmlChar *ret = NULL;
if (CheckArgs(args, "OS:node_get_attr_value")) {
if(!PyArg_ParseTuple(args, (char *) "Os:node_get_attr_value",