Gitweb links:

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

The branch, master has been updated
       via  f509cfc624ffcf093348c2e06887e2c16351858c (commit)
      from  79ef33218f7cc9acc7b1735362f9e587d63dd9c7 (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/libdom.git/commit/?id=f509cfc624ffcf093348c2e06887e2c16351858c
commit f509cfc624ffcf093348c2e06887e2c16351858c
Author: Daniel Silverstone <[email protected]>
Commit: Daniel Silverstone <[email protected]>

    (tokenlist): Try and avoid type-punned pointer
    
    Signed-off-by: Daniel Silverstone <[email protected]>

diff --git a/src/core/tokenlist.c b/src/core/tokenlist.c
index 313b13f..4e9f466 100644
--- a/src/core/tokenlist.c
+++ b/src/core/tokenlist.c
@@ -49,7 +49,7 @@ static void _dom_tokenlist_handle_attrmodified(dom_event 
*evt, void *pw)
 
        {
                dom_node *target;
-               exc = dom_event_get_target(mutevt, &target);
+               exc = dom_event_get_target(evt, &target);
                if (exc != DOM_NO_ERR)
                        return;
                dom_node_unref(target);


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

Summary of changes:
 src/core/tokenlist.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/tokenlist.c b/src/core/tokenlist.c
index 313b13f..4e9f466 100644
--- a/src/core/tokenlist.c
+++ b/src/core/tokenlist.c
@@ -49,7 +49,7 @@ static void _dom_tokenlist_handle_attrmodified(dom_event 
*evt, void *pw)
 
        {
                dom_node *target;
-               exc = dom_event_get_target(mutevt, &target);
+               exc = dom_event_get_target(evt, &target);
                if (exc != DOM_NO_ERR)
                        return;
                dom_node_unref(target);


-- 
Document Object Model library
_______________________________________________
netsurf-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to