mirror of
https://github.com/GNOME/libxml2.git
synced 2025-03-25 19:01:31 +08:00
should fix #109327 errors on memory accesses Daniel
* xinclude.c: should fix #109327 errors on memory accesses Daniel
This commit is contained in:
parent
c7e9b194e7
commit
d9b72839b3
@ -1,3 +1,7 @@
|
||||
Thu Mar 27 15:22:41 CET 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* xinclude.c: should fix #109327 errors on memory accesses
|
||||
|
||||
Thu Mar 27 15:06:13 CET 2003 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* HTMLtree.c: Fixed reopening of #78662 <form action="...">
|
||||
|
@ -538,6 +538,11 @@ xmlXIncludeRecurseDoc(xmlXIncludeCtxtPtr ctxt, xmlDocPtr doc,
|
||||
newctxt->incTab[i]->count--;
|
||||
newctxt->incTab[i] = NULL;
|
||||
}
|
||||
|
||||
/* urlTab may have been reallocated */
|
||||
ctxt->urlTab = newctxt->urlTab;
|
||||
ctxt->urlMax = newctxt->urlMax;
|
||||
|
||||
newctxt->urlMax = 0;
|
||||
newctxt->urlNr = 0;
|
||||
newctxt->urlTab = NULL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user