bug in xmlRegExecPushString2() pointed out by Sreeni Nair. Daniel

* xmlregexp.c: bug in xmlRegExecPushString2() pointed out by
  Sreeni Nair.
Daniel
This commit is contained in:
Daniel Veillard 2005-12-28 21:13:33 +00:00
parent d95ecf0b8d
commit 0b1ff14bd0
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Wed Dec 28 22:12:34 CET 2005 Daniel Veillard <daniel@veillard.com>
* xmlregexp.c: bug in xmlRegExecPushString2() pointed out by
Sreeni Nair.
Tue Dec 20 16:55:31 CET 2005 Rob Richards <rrichards@ctindustries.net>
* tree.c: fix bug #322136 in xmlNodeBufGetContent when entity ref is

View File

@ -3679,7 +3679,7 @@ xmlRegExecPushString2(xmlRegExecCtxtPtr exec, const xmlChar *value,
ret = xmlRegExecPushStringInternal(exec, str, data, 1);
if (str != buf)
xmlFree(buf);
xmlFree(str);
return(ret);
}