ensured xmlDoc.URL is always canonic

This commit is contained in:
Igor Zlatkovic 2003-02-19 14:49:48 +00:00
parent 2e9b165f9e
commit 18fb27808d

4
SAX.c
View File

@ -762,7 +762,9 @@ startDocument(void *ctx)
}
if ((ctxt->myDoc != NULL) && (ctxt->myDoc->URL == NULL) &&
(ctxt->input != NULL) && (ctxt->input->filename != NULL)) {
ctxt->myDoc->URL = xmlStrdup((const xmlChar *) ctxt->input->filename);
ctxt->myDoc->URL = xmlCanonicPath((const xmlChar *) ctxt->input->filename);
if (ctxt->myDoc->URL == NULL)
ctxt->myDoc->URL = xmlStrdup((const xmlChar *) ctxt->input->filename);
}
}