Gitweb links:

...log 
http://git.netsurf-browser.org/netsurf.git/shortlog/cdc77136621a67396b08eba0cacf6bfc6f79b809
...commit 
http://git.netsurf-browser.org/netsurf.git/commit/cdc77136621a67396b08eba0cacf6bfc6f79b809
...tree 
http://git.netsurf-browser.org/netsurf.git/tree/cdc77136621a67396b08eba0cacf6bfc6f79b809

The branch, master has been updated
       via  cdc77136621a67396b08eba0cacf6bfc6f79b809 (commit)
      from  2c49123a270b2e723c76516750e9325eb6ab99dc (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commitdiff 
http://git.netsurf-browser.org/netsurf.git/commit/?id=cdc77136621a67396b08eba0cacf6bfc6f79b809
commit cdc77136621a67396b08eba0cacf6bfc6f79b809
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>

    Add some missing unrefs
    
    Signed-off-by: Daniel Silverstone <[email protected]>

diff --git a/content/handlers/javascript/duktape/Event.bnd 
b/content/handlers/javascript/duktape/Event.bnd
index 2d0d6a5..aa69daa 100644
--- a/content/handlers/javascript/duktape/Event.bnd
+++ b/content/handlers/javascript/duktape/Event.bnd
@@ -54,6 +54,8 @@ getter Event::target ()
        if (exc != DOM_NO_ERR) return 0;
 
        dukky_push_node(ctx, et);
+
+       dom_node_unref(et);
        return 1;
 %}
 
@@ -67,6 +69,8 @@ getter Event::currentTarget ()
        if (exc != DOM_NO_ERR) return 0;
 
        dukky_push_node(ctx, et);
+
+       dom_node_unref(et);
        return 1;
 %}
 


-----------------------------------------------------------------------

Summary of changes:
 content/handlers/javascript/duktape/Event.bnd |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/content/handlers/javascript/duktape/Event.bnd 
b/content/handlers/javascript/duktape/Event.bnd
index 2d0d6a5..aa69daa 100644
--- a/content/handlers/javascript/duktape/Event.bnd
+++ b/content/handlers/javascript/duktape/Event.bnd
@@ -54,6 +54,8 @@ getter Event::target ()
        if (exc != DOM_NO_ERR) return 0;
 
        dukky_push_node(ctx, et);
+
+       dom_node_unref(et);
        return 1;
 %}
 
@@ -67,6 +69,8 @@ getter Event::currentTarget ()
        if (exc != DOM_NO_ERR) return 0;
 
        dukky_push_node(ctx, et);
+
+       dom_node_unref(et);
        return 1;
 %}
 


-- 
NetSurf Browser

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to