mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
malloc-fail: Fix memory leak in xmlXPathDistinctSorted
Found with libFuzzer, see #344.
This commit is contained in:
parent
6f9604f0e3
commit
bc9f372c10
13
xpath.c
13
xpath.c
@ -4560,16 +4560,23 @@ xmlXPathDistinctSorted (xmlNodeSetPtr nodes) {
|
||||
cur = xmlXPathNodeSetItem(nodes, i);
|
||||
strval = xmlXPathCastNodeToString(cur);
|
||||
if (xmlHashLookup(hash, strval) == NULL) {
|
||||
xmlHashAddEntry(hash, strval, strval);
|
||||
/* TODO: Propagate memory error. */
|
||||
if (xmlHashAddEntry(hash, strval, strval) < 0) {
|
||||
xmlFree(strval);
|
||||
goto error;
|
||||
}
|
||||
if (xmlXPathNodeSetAddUnique(ret, cur) < 0)
|
||||
break;
|
||||
goto error;
|
||||
} else {
|
||||
xmlFree(strval);
|
||||
}
|
||||
}
|
||||
xmlHashFree(hash, xmlHashDefaultDeallocator);
|
||||
return(ret);
|
||||
|
||||
error:
|
||||
xmlHashFree(hash, xmlHashDefaultDeallocator);
|
||||
xmlXPathFreeNodeSet(ret);
|
||||
return(NULL);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
x
Reference in New Issue
Block a user