You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/expat/files/expat-2.0.1-check_stopped_p...

15 lines
410 B

Fix segmentation fault in python tests
http://bugs.gentoo.org/197043
--- lib/xmlparse.c
+++ lib/xmlparse.c
@@ -2563,6 +2563,8 @@
(int)(dataPtr - (ICHAR *)dataBuf));
if (s == next)
break;
+ if (ps_parsing == XML_FINISHED || ps_parsing == XML_SUSPENDED)
+ break;
*eventPP = s;
}
}