aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/libxml.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/python/libxml.c b/python/libxml.c
index 2860bca8..2ae18560 100644
--- a/python/libxml.c
+++ b/python/libxml.c
@@ -1644,9 +1644,17 @@ libxml_xmlFreeTextReader(ATTRIBUTE_UNUSED PyObject *self, PyObject *args) {
xmlTextReaderErrorFunc f;
void *arg;
+ if (self == NULL) {
+ Py_INCREF(Py_None);
+ return(Py_None);
+ }
if (!PyArg_ParseTuple(args, (char *)"O:xmlFreeTextReader", &pyobj_reader))
return(NULL);
reader = (xmlTextReaderPtr) PyxmlTextReader_Get(pyobj_reader);
+ if (reader == NULL) {
+ Py_INCREF(Py_None);
+ return(Py_None);
+ }
xmlTextReaderGetErrorHandler(reader,&f,&arg);
if (arg != NULL) {