1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 10:16:41 +02:00

MFB: Always return something, even if it succeeds :)

This commit is contained in:
foobar
2005-09-02 08:26:05 +00:00
parent 59d2e3f3aa
commit 1496355faf
+1 -3
View File
@@ -258,9 +258,7 @@ static void pvalue_config_destructor(zval *pvalue)
*/
int php_init_config_hash(void)
{
if (zend_hash_init(&configuration_hash, 0, NULL, (dtor_func_t) pvalue_config_destructor, 1) == FAILURE) {
return FAILURE;
}
return zend_hash_init(&configuration_hash, 0, NULL, (dtor_func_t) pvalue_config_destructor, 1);
}
/* }}} */