--- C:\builds\redland-1.0.8_orig\raptor\src\raptor_sax2.c Sun Jun 15 04:12:20 2008 +++ C:\builds\redland-1.0.8_good\raptor\src\raptor_sax2.c Fri Jul 25 08:45:04 2008 @@ -66,9 +66,16 @@ raptor_sax2_finish(void) { #ifdef RAPTOR_XML_LIBXML - xmlCleanupParser(); + +/* ljs 1-8-07, Fixes an access violation exception that occurs on windows platform when + xmlSetStructuredErrorFunc() is called after calling xmlCleanupParser(). + xmlCleanupParser(); */ + xmlSetStructuredErrorFunc(NULL, NULL); xmlSetGenericErrorFunc(NULL, NULL); + + xmlCleanupParser(); + #endif }