- xpath.c: robert pointed out xmlXPathNINF was not initialized
daniel
diff --git a/xpath.c b/xpath.c
index 8d68888..fc1aa08 100644
--- a/xpath.c
+++ b/xpath.c
@@ -194,7 +194,7 @@
 
     xmlXPathNAN = xmlXPathDivideBy(0.0, 0.0);
     xmlXPathPINF = xmlXPathDivideBy(1.0, 0.0);
-    xmlXPathPINF = xmlXPathDivideBy(-1.0, 0.0);
+    xmlXPathNINF = xmlXPathDivideBy(-1.0, 0.0);
 
     initialized = 1;
 }