diff --git a/xmlIO.c b/xmlIO.c index 12341407..9e84a3c9 100644 --- a/xmlIO.c +++ b/xmlIO.c @@ -2488,6 +2488,10 @@ xmlParserGetDirectory(const char *filename) { char *cur; char sep = '/'; +#ifdef _WIN32_WCE /* easy way by now ... wince does not have dirs! */ + return NULL; +#endif + if (xmlInputCallbackInitialized == 0) xmlRegisterDefaultInputCallbacks();