mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Avoid some dead code and cleanup in relaxng.c
https://bugzilla.gnome.org/show_bug.cgi?id=705388 Code needed a bit of cleanup
This commit is contained in:
parent
b8bdc258de
commit
7d4e259fbf
@ -2595,13 +2595,10 @@ xmlRelaxNGSchemaTypeCompare(void *data ATTRIBUTE_UNUSED,
|
||||
}
|
||||
ret = xmlSchemaValPredefTypeNode(typ, value2, &res2, ctxt2);
|
||||
if (ret != 0) {
|
||||
if ((comp1 == NULL) && (res1 != NULL))
|
||||
if (res1 != (xmlSchemaValPtr) comp1)
|
||||
xmlSchemaFreeValue(res1);
|
||||
return (-1);
|
||||
}
|
||||
if (res1 == NULL) {
|
||||
return (-1);
|
||||
}
|
||||
ret = xmlSchemaCompareValues(res1, res2);
|
||||
if (res1 != (xmlSchemaValPtr) comp1)
|
||||
xmlSchemaFreeValue(res1);
|
||||
|
Loading…
x
Reference in New Issue
Block a user