1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-01-04 05:17:37 +03:00

xinclude: Remove unused member 'url' from xmlXIncludeCtxt

This commit is contained in:
Nick Wellnhofer 2022-10-23 14:59:31 +02:00
parent 966f5ebd77
commit 0b09f132f4

View File

@ -77,7 +77,6 @@ struct _xmlXIncludeCtxt {
xmlChar * *txtTab; /* array of unparsed text strings */
xmlURL *txturlTab; /* array of unparsed text URLs */
xmlChar * url; /* the current URL processed */
int urlNr; /* number of URLs stacked */
int urlMax; /* size of URL stack */
xmlChar * *urlTab; /* URL stack */
@ -351,7 +350,7 @@ xmlXIncludeURLPush(xmlXIncludeCtxtPtr ctxt,
return (-1);
}
}
ctxt->url = ctxt->urlTab[ctxt->urlNr] = xmlStrdup(value);
ctxt->urlTab[ctxt->urlNr] = xmlStrdup(value);
return (ctxt->urlNr++);
}
@ -369,10 +368,6 @@ xmlXIncludeURLPop(xmlXIncludeCtxtPtr ctxt)
if (ctxt->urlNr <= 0)
return;
ctxt->urlNr--;
if (ctxt->urlNr > 0)
ctxt->url = ctxt->urlTab[ctxt->urlNr - 1];
else
ctxt->url = NULL;
ret = ctxt->urlTab[ctxt->urlNr];
ctxt->urlTab[ctxt->urlNr] = NULL;
if (ret != NULL)