Gitweb links:
...log
http://git.netsurf-browser.org/libdom.git/shortlog/f509cfc624ffcf093348c2...
...commit
http://git.netsurf-browser.org/libdom.git/commit/f509cfc624ffcf093348c2e0...
...tree
http://git.netsurf-browser.org/libdom.git/tree/f509cfc624ffcf093348c2e068...
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=f509cfc624ffcf093348...
commit f509cfc624ffcf093348c2e06887e2c16351858c
Author: Daniel Silverstone <dsilvers(a)digital-scurf.org>
Commit: Daniel Silverstone <dsilvers(a)digital-scurf.org>
(tokenlist): Try and avoid type-punned pointer
Signed-off-by: Daniel Silverstone <dsilvers(a)digital-scurf.org>
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