From 90fe920e07c78e4f65f5df84498c570892e5e2c0 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sun, 4 Aug 2019 11:11:35 +0100 Subject: Duktape element binding: Check dom_string_create for error. --- content/handlers/javascript/duktape/Element.bnd | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'content/handlers/javascript/duktape/Element.bnd') diff --git a/content/handlers/javascript/duktape/Element.bnd b/content/handlers/javascript/duktape/Element.bnd index 33fc0863e..6702342e1 100644 --- a/content/handlers/javascript/duktape/Element.bnd +++ b/content/handlers/javascript/duktape/Element.bnd @@ -283,6 +283,9 @@ method Element::getAttribute() const char *s = duk_safe_to_lstring(ctx, 0, &slen); exc = dom_string_create((const uint8_t *)s, slen, &attr_name); duk_pop(ctx); + if (exc != DOM_NO_ERR) { + return 0; + } exc = dom_element_get_attribute(priv->parent.node, attr_name, &attr_value); @@ -336,6 +339,9 @@ method Element::hasAttribute() const char *s = duk_safe_to_lstring(ctx, 0, &slen); exc = dom_string_create((const uint8_t *)s, slen, &attr_name); duk_pop(ctx); + if (exc != DOM_NO_ERR) { + return 0; + } exc = dom_element_has_attribute(priv->parent.node, attr_name, &res); -- cgit v1.2.3