aboutsummaryrefslogtreecommitdiffstats
path: root/xpath.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2002-05-27 12:16:02 +0000
committerDaniel Veillard <veillard@src.gnome.org>2002-05-27 12:16:02 +0000
commited23b7dc73f6c1146701ece20ed3f03d68366516 (patch)
treef75f441e2a2e4c3ec4830ad5ff20b19752336c42 /xpath.c
parentc692481a8f89b9095deee622a7afe3fcb15f1db0 (diff)
downloadandroid_external_libxml2-ed23b7dc73f6c1146701ece20ed3f03d68366516.tar.gz
android_external_libxml2-ed23b7dc73f6c1146701ece20ed3f03d68366516.tar.bz2
android_external_libxml2-ed23b7dc73f6c1146701ece20ed3f03d68366516.zip
patch from Richard Jinks to fix a problem introduced in the previous patch
* xpath.c: patch from Richard Jinks to fix a problem introduced in the previous patch and pointed by Norm Daniel
Diffstat (limited to 'xpath.c')
-rw-r--r--xpath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xpath.c b/xpath.c
index 1c476b20..adc33109 100644
--- a/xpath.c
+++ b/xpath.c
@@ -8100,7 +8100,7 @@ xmlXPathCompNodeTest(xmlXPathParserContextPtr ctxt, xmlXPathTestVal *test,
if (CUR != ')') {
name = xmlXPathParseLiteral(ctxt);
CHECK_ERROR 0;
- *type = NODE_TEST_PI;
+ *test = NODE_TEST_PI;
SKIP_BLANKS;
}
}