From 4d6223f6a455b34c1d2258b332421644dff3136e Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Fri, 23 Dec 2005 00:52:52 +0100 Subject: [PATCH] Oops, compile fix --- src/document/dom/select.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/document/dom/select.c b/src/document/dom/select.c index f7e03869..fc8a9682 100644 --- a/src/document/dom/select.c +++ b/src/document/dom/select.c @@ -613,7 +613,7 @@ static int match_attribute_value(struct dom_select_node *selector, struct dom_node *node) { struct dom_string *selvalue = &selector->node.data.attribute.value; - struct dom_string *value = &attr->data.attribute.value; + struct dom_string *value = &node->data.attribute.value; /* The attribute selector value should atleast be contained in the * attribute value. */