mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Adding a check in case of allocation error
For https://bugzilla.gnome.org/show_bug.cgi?id=733043 There is missing Null condition in xmlRelaxNGValidateInterleave of relaxng.c Dereferencing it may cause a crash.
This commit is contained in:
parent
4e73bfaee6
commit
6d753994b9
@ -9419,6 +9419,10 @@ xmlRelaxNGValidateInterleave(xmlRelaxNGValidCtxtPtr ctxt,
|
||||
oldstate = ctxt->state;
|
||||
for (i = 0; i < nbgroups; i++) {
|
||||
ctxt->state = xmlRelaxNGCopyValidState(ctxt, oldstate);
|
||||
if (ctxt->state == NULL) {
|
||||
ret = -1;
|
||||
break;
|
||||
}
|
||||
group = partitions->groups[i];
|
||||
if (lasts[i] != NULL) {
|
||||
last = lasts[i]->next;
|
||||
|
Loading…
x
Reference in New Issue
Block a user