You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by sa...@apache.org on 2007/04/12 16:23:49 UTC

svn commit: r527954 - /webservices/axis2/trunk/c/axiom/src/parser/libxml2/libxml2_reader_wrapper.c

Author: samisa
Date: Thu Apr 12 07:23:39 2007
New Revision: 527954

URL: http://svn.apache.org/viewvc?view=rev&rev=527954
Log:
Fixed windows build break

Modified:
    webservices/axis2/trunk/c/axiom/src/parser/libxml2/libxml2_reader_wrapper.c

Modified: webservices/axis2/trunk/c/axiom/src/parser/libxml2/libxml2_reader_wrapper.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/axiom/src/parser/libxml2/libxml2_reader_wrapper.c?view=diff&rev=527954&r1=527953&r2=527954
==============================================================================
--- webservices/axis2/trunk/c/axiom/src/parser/libxml2/libxml2_reader_wrapper.c (original)
+++ webservices/axis2/trunk/c/axiom/src/parser/libxml2/libxml2_reader_wrapper.c Thu Apr 12 07:23:39 2007
@@ -467,7 +467,10 @@
     if (AXIS2_INTF_TO_IMPL(parser)->reader)
     {
         xmlTextReaderClose(AXIS2_INTF_TO_IMPL(parser)->reader);
+#if defined( WIN32 )
+#else
         xmlFreeTextReader(AXIS2_INTF_TO_IMPL(parser)->reader);
+#endif
     }
     AXIS2_FREE(env->allocator, AXIS2_INTF_TO_IMPL(parser));
     return;



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org