On Thu, 29 Jul 2004 12:13:05 +0400 Antony Dovgal <[EMAIL PROTECTED]> wrote:
> On Thu, 29 Jul 2004 02:59:44 -0000 > "Wez Furlong" <[EMAIL PROTECTED]> wrote: > > > wez Wed Jul 28 22:59:44 2004 EDT > > > > Added files: > > /php-src/win32 globals.c php_win32_globals.h > > > > Modified files: > > /php-src/ext/standard basic_functions.c syslog.c > > /php-src/win32 pwd.c time.c wsyslog.c > > /php-src/win32/build config.w32 > > Log: > > Misc. win32 thread safety fixes. > > You forgot an ifdef there. > Here is the patch. Index: basic_functions.c =================================================================== RCS file: /repository/php-src/ext/standard/basic_functions.c,v retrieving revision 1.677 diff -u -r1.677 basic_functions.c --- basic_functions.c 29 Jul 2004 02:59:43 -0000 1.677 +++ basic_functions.c 29 Jul 2004 08:11:22 -0000 @@ -1227,7 +1227,9 @@ PHP_RSHUTDOWN(assert)(SHUTDOWN_FUNC_ARGS_PASSTHRU); PHP_RSHUTDOWN(url_scanner_ex)(SHUTDOWN_FUNC_ARGS_PASSTHRU); PHP_RSHUTDOWN(streams)(SHUTDOWN_FUNC_ARGS_PASSTHRU); +#ifdef PHP_WIN32 PHP_RSHUTDOWN(win32_core_globals)(SHUTDOWN_FUNC_ARGS_PASSTHRU); +#endif if (BG(user_tick_functions)) { zend_llist_destroy(BG(user_tick_functions)); --- WBR, Antony Dovgal aka tony2001 [EMAIL PROTECTED] || [EMAIL PROTECTED] -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php