From b1f466b3edca44972d33d6c8190dbbfcc0622e53 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Tue, 29 Jul 2008 17:28:07 +0000 Subject: [PATCH] - missing in the previous crypt commit (shutdown frees the locking mechanism) --- ext/standard/basic_functions.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index de681896c9..a05d45ddab 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -4072,6 +4072,7 @@ PHP_MSHUTDOWN_FUNCTION(basic) /* {{{ */ basic_globals_dtor(&basic_globals TSRMLS_CC); #ifdef PHP_WIN32 php_win32_core_globals_dtor(&the_php_win32_core_globals TSRMLS_CC); + PHP_MSHUTDOWN(crypt); #endif #endif -- 2.50.1