From: Dmitry Stogov Date: Wed, 19 Dec 2018 13:15:49 +0000 (+0300) Subject: Fixed compilation warnings X-Git-Tag: php-7.4.0alpha1~1370 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9acfe1f8f02d9dd53c2c1958e942df3f67577385;p=php Fixed compilation warnings --- diff --git a/ext/standard/password.c b/ext/standard/password.c index 1fa70e0e26..7998559e94 100644 --- a/ext/standard/password.c +++ b/ext/standard/password.c @@ -527,10 +527,11 @@ PHP_MSHUTDOWN_FUNCTION(password) /* {{{ */ { #ifdef ZTS if (!tsrm_is_main_thread()) { - return; + return SUCCESS; } #endif zend_hash_destroy(&php_password_algos); + return SUCCESS; } /* }}} */