From 78102b202dd49e01116aa411a292a085358e2e62 Mon Sep 17 00:00:00 2001 From: James Clark Date: Sun, 25 Apr 1999 12:12:01 +0000 Subject: [PATCH] Fix for possible bug --- expat/xmlparse/xmlparse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expat/xmlparse/xmlparse.c b/expat/xmlparse/xmlparse.c index 35ce2fb3..5a2cc5ce 100755 --- a/expat/xmlparse/xmlparse.c +++ b/expat/xmlparse/xmlparse.c @@ -1054,7 +1054,7 @@ doContent(XML_Parser parser, } *eventPP = s; for (;;) { - const char *next; + const char *next = s; /* XmlContentTok doesn't always set the last arg */ int tok = XmlContentTok(enc, s, end, &next); *eventEndPP = next; switch (tok) {