mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
malloc-fail: Fix memory leak after calling xmlXPathWrapString
Destroy the string in xmlXPathWrapString if the function fails. This is somewhat dangerous but matches the expectations of users. Found with libFuzzer, see #344.
This commit is contained in:
parent
3dc645227e
commit
d31a0e8e75
3
xpath.c
3
xpath.c
@ -5322,6 +5322,8 @@ xmlXPathNewString(const xmlChar *val) {
|
||||
* Wraps the @val string into an XPath object.
|
||||
*
|
||||
* Returns the newly created object.
|
||||
*
|
||||
* Frees @val in case of error.
|
||||
*/
|
||||
xmlXPathObjectPtr
|
||||
xmlXPathWrapString (xmlChar *val) {
|
||||
@ -5330,6 +5332,7 @@ xmlXPathWrapString (xmlChar *val) {
|
||||
ret = (xmlXPathObjectPtr) xmlMalloc(sizeof(xmlXPathObject));
|
||||
if (ret == NULL) {
|
||||
xmlXPathErrMemory(NULL, "creating string object\n");
|
||||
xmlFree(val);
|
||||
return(NULL);
|
||||
}
|
||||
memset(ret, 0 , sizeof(xmlXPathObject));
|
||||
|
Loading…
x
Reference in New Issue
Block a user