diff options
author | Sara Golemon <pollita@php.net> | 2018-09-25 12:10:33 -0400 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2018-09-25 12:10:33 -0400 |
commit | ffc7f8ae5228b80fdb647bc058dd652f7f47d448 (patch) | |
tree | 7b9d331c3f057bb0590ddefdeb0687c4d7980a7f | |
parent | 5edaa6f9470f40cee1b48c8e5b0a3e2654594f90 (diff) | |
parent | 913c20e61fa3f74f87a7040e97ea0af3b7a58e68 (diff) | |
download | php-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.c | 2 |
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) |