mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xmllint: Make --push report parse errors
The push parser leaves documents in ctxt->myDoc even if they're invalid. Also fix documentation. Regressed with f8ff4d86.
This commit is contained in:
parent
5535721f04
commit
53a48468ae
9
parser.c
9
parser.c
@ -11615,9 +11615,14 @@ done:
|
||||
* The last chunk, which will often be empty, must be marked with
|
||||
* the @terminate flag. With the default SAX callbacks, the resulting
|
||||
* document will be available in ctxt->myDoc. This pointer will not
|
||||
* be freed by the library.
|
||||
* be freed when calling xmlFreeParserCtxt and must be freed by the
|
||||
* caller. If the document isn't well-formed, it will still be returned
|
||||
* in ctxt->myDoc.
|
||||
*
|
||||
* As an exception, xmlCtxtResetPush will free the document in
|
||||
* ctxt->myDoc. So ctxt->myDoc should be set to NULL after extracting
|
||||
* the document.
|
||||
*
|
||||
* If the document isn't well-formed, ctxt->myDoc is set to NULL.
|
||||
* The push parser doesn't support recovery mode.
|
||||
*
|
||||
* Returns an xmlParserErrors code (0 on success).
|
||||
|
10
xmllint.c
10
xmllint.c
@ -355,6 +355,16 @@ parseXml(xmllintState *lint, const char *filename) {
|
||||
ctxt->myDoc = NULL;
|
||||
if (f != stdin)
|
||||
fclose(f);
|
||||
|
||||
/*
|
||||
* The push parser leaves non-wellformed documents
|
||||
* in ctxt->myDoc.
|
||||
*/
|
||||
if (!ctxt->wellFormed) {
|
||||
xmlFreeDoc(doc);
|
||||
doc = NULL;
|
||||
}
|
||||
|
||||
return(doc);
|
||||
}
|
||||
#endif /* LIBXML_PUSH_ENABLED */
|
||||
|
Loading…
x
Reference in New Issue
Block a user