Applied the VMS update patch from Craig A. Berry update Daniel

* vms/build_libxml.com vms/config.vms vms/readme.vms
  include/libxml/parser.h include/libxml/parserInternals.h
  include/libxml/tree.h include/libxml/xmlIO.h
  HTMLparser.c catalog.c debugXML.c parser.c parserInternals.c
  tree.c triodef.h trionan.c uri.c xmlIO.c xpath.c:
  Applied the VMS update patch from Craig A. Berry
* doc/*.html: update
Daniel
diff --git a/uri.c b/uri.c
index ef9ca12..5f77837 100644
--- a/uri.c
+++ b/uri.c
@@ -874,7 +874,7 @@
     if (str == NULL)
 	return(NULL);
     len = xmlStrlen(str);
-    if (len <= 0) return(NULL);
+    if (!(len > 0)) return(NULL);
 
     len += 20;
     ret = (xmlChar *) xmlMalloc(len);