Skip to content

Commit e88a081

Browse files
committed
Remove unnecessary Z_PARAM_ZVAL_DEREFs
1 parent 50ba014 commit e88a081

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/standard/password.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ PHP_FUNCTION(password_needs_rehash)
664664

665665
ZEND_PARSE_PARAMETERS_START(2, 3)
666666
Z_PARAM_STR(hash)
667-
Z_PARAM_ZVAL_DEREF(znew_algo)
667+
Z_PARAM_ZVAL(znew_algo)
668668
Z_PARAM_OPTIONAL
669669
Z_PARAM_ARRAY_OR_OBJECT_HT(options)
670670
ZEND_PARSE_PARAMETERS_END();
@@ -713,7 +713,7 @@ PHP_FUNCTION(password_hash)
713713

714714
ZEND_PARSE_PARAMETERS_START(2, 3)
715715
Z_PARAM_STR(password)
716-
Z_PARAM_ZVAL_DEREF(zalgo)
716+
Z_PARAM_ZVAL(zalgo)
717717
Z_PARAM_OPTIONAL
718718
Z_PARAM_ARRAY_OR_OBJECT_HT(options)
719719
ZEND_PARSE_PARAMETERS_END();

0 commit comments

Comments
 (0)