diff --git a/ChangeLog b/ChangeLog index 5cedaf02..36dc9200 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Wed Nov 28 10:09:51 CET 2001 Daniel Veillard + + * 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 * xmlIO.c: robert pointed out a loop error in callback cleanups diff --git a/xmlIO.c b/xmlIO.c index b9b9ae61..f4ef8bad 100644 --- a/xmlIO.c +++ b/xmlIO.c @@ -144,7 +144,6 @@ xmlCleanupInputCallbacks(void) } xmlInputCallbackNr = 0; - xmlInputCallbackInitialized = 0; } /** @@ -169,7 +168,6 @@ xmlCleanupOutputCallbacks(void) } xmlOutputCallbackNr = 0; - xmlOutputCallbackInitialized = 0; } /************************************************************************