summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSara Golemon <pollita@php.net>2018-09-25 12:10:33 -0400
committerSara Golemon <pollita@php.net>2018-09-25 12:10:33 -0400
commitffc7f8ae5228b80fdb647bc058dd652f7f47d448 (patch)
tree7b9d331c3f057bb0590ddefdeb0687c4d7980a7f
parent5edaa6f9470f40cee1b48c8e5b0a3e2654594f90 (diff)
parent913c20e61fa3f74f87a7040e97ea0af3b7a58e68 (diff)
downloadphp-git-ffc7f8ae5228b80fdb647bc058dd652f7f47d448.tar.gz
Merge branch 'PHP-7.3'
* PHP-7.3: Fixed bug #76918 Repeated parameter name in arg info
-rw-r--r--ext/hash/hash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/hash/hash.c b/ext/hash/hash.c
index d3b4a07c5a..2f4bf013db 100644
--- a/ext/hash/hash.c
+++ b/ext/hash/hash.c
@@ -1362,7 +1362,7 @@ ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_hash_update_file, 0, 0, 2)
ZEND_ARG_INFO(0, context)
ZEND_ARG_INFO(0, filename)
- ZEND_ARG_INFO(0, context)
+ ZEND_ARG_INFO(0, stream_context)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_hash_final, 0, 0, 1)