From 22f25a8a7e38e3a794cc575be47d770e3c094891 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Wed, 28 Nov 2001 09:12:23 +0000 Subject: [PATCH] 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 --- ChangeLog | 6 ++++++ xmlIO.c | 2 -- 2 files changed, 6 insertions(+), 2 deletions(-) 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; } /************************************************************************