Corbaization of the document structures, Daniel.
diff --git a/tree.c b/tree.c
index c4eddec..72287a2 100644
--- a/tree.c
+++ b/tree.c
@@ -277,7 +277,10 @@
     cur->entities = NULL;
     cur->standalone = -1;
     cur->compression = xmlCompressMode;
-    cur->servant = NULL;
+#ifndef WITHOUT_CORBA
+    cur->_private = NULL;
+    cur->vepv = NULL;
+#endif
     return(cur);
 }
 
@@ -326,6 +329,10 @@
 	cur->value = xmlStrdup(value);
     else 
 	cur->value = NULL;
+#ifndef WITHOUT_CORBA
+    cur->_private = NULL;
+    cur->vepv = NULL;
+#endif
 
     /*
      * Add it at the end to preserve parsing order ...
@@ -407,7 +414,10 @@
     cur->name = xmlStrdup(name);
     cur->ns = ns;
     cur->nsDef = NULL;
-    cur->servant = NULL;
+#ifndef WITHOUT_CORBA
+    cur->_private = NULL;
+    cur->vepv = NULL;
+#endif
     if (content != NULL)
 	cur->content = xmlStrdup(content);
     else