mirror of
https://github.com/GNOME/libxml2.git
synced 2025-03-31 19:10:28 +08:00
ensured xmlDoc.URL is always canonic
This commit is contained in:
parent
2e9b165f9e
commit
18fb27808d
4
SAX.c
4
SAX.c
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user