- Fix an incompatibility between pyexpat and the system expat-2.0.1 that

led to a segfault running test_pyexpat.py (patch 110; upstream issue
    9054; rhbz#610312)
This commit is contained in:
dmalcolm 2010-07-02 15:49:25 +00:00
commit 03b7fb2d62
2 changed files with 26 additions and 1 deletions

View file

@ -0,0 +1,14 @@
Index: Modules/pyexpat.c
===================================================================
--- Modules/pyexpat.c (revision 81539)
+++ Modules/pyexpat.c (working copy)
@@ -415,6 +415,9 @@
PyObject *args;
PyObject *temp;
+ if (!have_handler(self, CharacterData))
+ return -1;
+
args = PyTuple_New(1);
if (args == NULL)
return -1;