1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-19 14:50:07 +03:00

applied Javier's WinCE patch

This commit is contained in:
Igor Zlatkovic 2002-09-29 17:51:06 +00:00
parent e16b57406a
commit 9181cc0316

View File

@ -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();