mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
Fix memory leak in xmlSAX2StartElement
Introduced by a recent commit. Only happens if max depth is exceeded in SAX1 mode. Found by OSS-Fuzz.
This commit is contained in:
parent
26828cb3a1
commit
6b49db2cb2
2
SAX2.c
2
SAX2.c
@ -1668,6 +1668,8 @@ xmlSAX2StartElement(void *ctx, const xmlChar *fullname, const xmlChar **atts)
|
|||||||
if (nodePush(ctxt, ret) < 0) {
|
if (nodePush(ctxt, ret) < 0) {
|
||||||
xmlUnlinkNode(ret);
|
xmlUnlinkNode(ret);
|
||||||
xmlFreeNode(ret);
|
xmlFreeNode(ret);
|
||||||
|
if (prefix != NULL)
|
||||||
|
xmlFree(prefix);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user