as robert pointed again, xmlInputCallbackInitialized gets reset by

* xmlIO.c: as robert pointed again, xmlInputCallbackInitialized
  gets reset by xmlCleanupInputCallbacks() and this makes the
  function useless. Same for output.
Daniel
diff --git a/ChangeLog b/ChangeLog
index 5cedaf0..36dc920 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Wed Nov 28 10:09:51 CET 2001 Daniel Veillard <daniel@veillard.com>
+
+	* xmlIO.c: as robert pointed again, xmlInputCallbackInitialized
+	  gets reset by xmlCleanupInputCallbacks() and this makes the
+	  function useless. Same for output.
+
 Tue Nov 27 17:22:36 CET 2001 Daniel Veillard <daniel@veillard.com>
 
 	* xmlIO.c: robert pointed out a loop error in callback cleanups
diff --git a/xmlIO.c b/xmlIO.c
index b9b9ae6..f4ef8ba 100644
--- a/xmlIO.c
+++ b/xmlIO.c
@@ -144,7 +144,6 @@
     }
 
     xmlInputCallbackNr = 0;
-    xmlInputCallbackInitialized = 0;
 }
 
 /**
@@ -169,7 +168,6 @@
     }
 
     xmlOutputCallbackNr = 0;
-    xmlOutputCallbackInitialized = 0;
 }
 
 /************************************************************************