mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
xinclude: Don't raise error on empty nodeset
xmlXPtrEval returning NULL means an empty nodeset if no error code is set. See #733.
This commit is contained in:
parent
2608baaf92
commit
1aa37db04c
@ -1213,7 +1213,7 @@ loaded:
|
||||
#endif
|
||||
}
|
||||
xptr = xmlXPtrEval(fragment, ctxt->xpctxt);
|
||||
if (xptr == NULL) {
|
||||
if (ctxt->xpctxt->lastError.code != XML_ERR_OK) {
|
||||
if (ctxt->xpctxt->lastError.code == XML_ERR_NO_MEMORY)
|
||||
xmlXIncludeErrMemory(ctxt);
|
||||
else
|
||||
@ -1222,6 +1222,8 @@ loaded:
|
||||
fragment);
|
||||
goto error;
|
||||
}
|
||||
if (xptr == NULL)
|
||||
goto done;
|
||||
switch (xptr->type) {
|
||||
case XPATH_UNDEFINED:
|
||||
case XPATH_BOOLEAN:
|
||||
@ -1293,6 +1295,7 @@ loaded:
|
||||
}
|
||||
#endif
|
||||
|
||||
done:
|
||||
ret = 0;
|
||||
|
||||
error:
|
||||
|
Loading…
x
Reference in New Issue
Block a user