ports/devel/devtodo/files/patch-util-XML.cc
Pav Lucistnik ba136a0db3 - Fix runtime bug
PR:		ports/118949
Submitted by:	Jeppe Larsen <jwl@io.dk>
Obtained from:	http://swapoff.org/ticket/54
2007-12-22 17:07:38 +00:00

11 lines
539 B
C++

--- util/XML.cc.orig Mon Dec 10 22:26:55 2007
+++ util/XML.cc Mon Dec 10 22:27:07 2007
@@ -49,7 +49,7 @@ void XML::init() {
// Only initialise scanners once
if (!initialised) {
// <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- xmlScan.addPattern(XmlDecl, "<\\?xml.*?>[[:space:]]*");
+ xmlScan.addPattern(XmlDecl, "<\\?xml.*\\?>[[:space:]]*");
xmlScan.addPattern(XmlCommentBegin, "<!--");
xmlScan.addPattern(XmlBegin, "<[a-zA-Z0-9_-]+"
"([[:space:]]+[a-zA-Z_0-9-]+=(([/a-zA-Z_0-9,.]+)|(\"[^\"]*\")|('[^']*')))"