From 850432f9900f9e2130f522bf19483c111b49e9e8 Mon Sep 17 00:00:00 2001 From: François Revol Date: Sat, 7 Dec 2013 01:08:52 +0100 Subject: C89 --- css/select.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'css') diff --git a/css/select.c b/css/select.c index 40755cb3e..4e82884df 100644 --- a/css/select.c +++ b/css/select.c @@ -1711,8 +1711,6 @@ css_error node_is_link(void *pw, void *n, bool *match) */ css_error node_is_visited(void *pw, void *node, bool *match) { - *match = false; - nscss_select_ctx *ctx = pw; nsurl *url; nserror error; @@ -1722,6 +1720,8 @@ css_error node_is_visited(void *pw, void *node, bool *match) dom_node *n = node; dom_string *s = NULL; + *match = false; + exc = dom_node_get_node_name(n, &s); if ((exc != DOM_NO_ERR) || (s == NULL)) { return CSS_NOMEM; -- cgit v1.2.3