1
0
mirror of https://github.com/php/php-src.git synced 2026-04-14 11:32:11 +02:00

(PHP parse_str) ParameterPassedByReference() check is not necessary.

This commit is contained in:
Andrei Zmievski
2000-09-11 14:54:12 +00:00
parent 1ccac6ed55
commit 6ac728e179

View File

@@ -775,11 +775,6 @@ PHP_FUNCTION(pathinfo)
}
}
if (opt == PHP_PATHINFO_DIRNAME || argc < 2) {
ret = php_basename(Z_STRVAL_PP(str), len);
add_assoc_string(tmp, "dirname", ret, 1);
}
if (argc == 2) {
zval **element;
zend_hash_get_current_data(Z_ARRVAL_P(tmp), (void **)&element);
@@ -2430,11 +2425,6 @@ PHP_FUNCTION(parse_str)
php_treat_data(PARSE_STRING, res, NULL ELS_CC PLS_CC SLS_CC);
else
{
if(!ParameterPassedByReference(ht, 2)){
php_error(E_WARNING, "Array not passed by reference in call to parse_str()");
return;
}
/* Clear out the array that was passed in. */
zval_dtor(*arrayArg);
array_init(*arrayArg);