Browse Source

MFB: Fixed bug #38190 (threading issues on windows 2003)

migration/RELEASE_1_0_0
Edin Kadribasic 20 years ago
parent
commit
cf933ed410
  1. 7
      ext/libxml/libxml.c

7
ext/libxml/libxml.c

@ -1043,6 +1043,13 @@ void php_libxml_node_decrement_resource(php_libxml_node_object *object TSRMLS_DC
}
/* }}} */
#ifdef PHP_WIN32
PHP_LIBXML_API BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
return xmlDllMain(hinstDLL, fdwReason, lpvReserved);
}
#endif
#endif
/*

Loading…
Cancel
Save