1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-19 14:50:07 +03:00

stupid bug found by mattam@netcourrier.com Daniel

* python/libxml_wrap.h: stupid bug found by mattam@netcourrier.com
Daniel
This commit is contained in:
Daniel Veillard 2002-09-17 19:25:28 +00:00
parent 9272704ba4
commit 63b01c2da1
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Tue Sep 17 21:22:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
* python/libxml_wrap.h: stupid bug found by mattam@netcourrier.com
Tue Sep 17 19:58:26 CEST 2002 Daniel Veillard <daniel@veillard.com>
* xmlIO.c: small portability glitch fixed.

View File

@ -81,7 +81,7 @@ typedef struct {
/* FILE * have their own internal representation */
#define PyFile_Get(v) (((v) == Py_None) ? NULL : \
(PyFile_Check(v) ? NULL : (PyFile_AsFile(v))))
(PyFile_Check(v) ? (PyFile_AsFile(v)) : NULL))
PyObject * libxml_intWrap(int val);