From 9acfe1f8f02d9dd53c2c1958e942df3f67577385 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Wed, 19 Dec 2018 16:15:49 +0300 Subject: [PATCH] Fixed compilation warnings --- ext/standard/password.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/standard/password.c b/ext/standard/password.c index 1fa70e0e262..7998559e941 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; } /* }}} */