mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-26 08:19:55 +03:00
HTML: Squash error-path leaks in select box construction.
This commit is contained in:
parent
65b16f4c54
commit
a43b83de03
@ -2719,6 +2719,7 @@ bool box_select(BOX_SPECIAL_PARAMS)
|
||||
c2) == false) {
|
||||
dom_node_unref(c2);
|
||||
dom_node_unref(c);
|
||||
form_free_control(gadget);
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
@ -2729,6 +2730,7 @@ bool box_select(BOX_SPECIAL_PARAMS)
|
||||
if (err != DOM_NO_ERR) {
|
||||
dom_node_unref(c2);
|
||||
dom_node_unref(c);
|
||||
form_free_control(gadget);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user