Commit dda267c2 authored by jack's avatar jack

Added missing DECREF.

parent bb007c7f
......@@ -83,6 +83,7 @@ my_StartElementHandler(userdata, name, atts)
}
args = Py_BuildValue("(sO)", name, attrs_obj);
Py_XDECREF(attrs_obj);
if (!args) return;
rv = PyEval_CallObject(self->StartElementHandler, args);
Py_XDECREF(args);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment