1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-24 09:25:01 +00:00
freebsd-ports/www/tdom/files/patch-expat-xmlparse.h
Martin Matuska 85c478ea88 - Update to 0.8.2
Suggested by:	mi
Patches by:	mi
2008-02-29 11:17:57 +00:00

17 lines
430 B
C

--- ../expat/xmlparse.c 2007-07-30 20:16:28.000000000 -0400
+++ ../expat/xmlparse.c 2008-02-14 14:20:27.000000000 -0500
@@ -1476,5 +1476,5 @@
const char *end;
int nLeftOver;
- enum XML_Error result;
+ enum XML_Error result = XML_STATUS_ERROR;
parseEndByteIndex += len;
positionPtr = s;
@@ -1500,4 +1500,6 @@
return result;
}
+ case XML_FINISHED:
+ /* nothing */;
}
}