From a43b83de0369228b935b693390186e5a8804340d Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Mon, 6 May 2019 17:29:53 +0100 Subject: HTML: Squash error-path leaks in select box construction. --- content/handlers/html/box_construct.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'content/handlers') diff --git a/content/handlers/html/box_construct.c b/content/handlers/html/box_construct.c index eb3bba7c3..4d0cba748 100644 --- a/content/handlers/html/box_construct.c +++ b/content/handlers/html/box_construct.c @@ -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; } -- cgit v1.2.3