We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8b8b625 + 950c338 commit b617a5bCopy full SHA for b617a5b
ext/sodium/libsodium.c
@@ -37,9 +37,8 @@ static zend_class_entry *sodium_exception_ce;
37
ZEND_BEGIN_ARG_INFO_EX(AI_None, 0, 0, 0)
38
ZEND_END_ARG_INFO()
39
40
-ZEND_BEGIN_ARG_INFO_EX(AI_FirstArgByReferenceSecondLength, 0, 0, 2)
+ZEND_BEGIN_ARG_INFO_EX(AI_FirstArgByReference, 0, 0, 1)
41
ZEND_ARG_INFO(1, reference)
42
- ZEND_ARG_INFO(0, length)
43
44
45
ZEND_BEGIN_ARG_INFO_EX(AI_String, 0, 0, 1)
@@ -339,7 +338,7 @@ static const zend_function_entry sodium_functions[] = {
339
338
PHP_FE(sodium_compare, AI_TwoStrings)
340
PHP_FE(sodium_increment, AI_StringRef)
341
PHP_FE(sodium_memcmp, AI_TwoStrings)
342
- PHP_FE(sodium_memzero, AI_FirstArgByReferenceSecondLength)
+ PHP_FE(sodium_memzero, AI_FirstArgByReference)
343
PHP_FE(sodium_pad, AI_StringAndLength)
344
PHP_FE(sodium_unpad, AI_StringAndLength)
345
0 commit comments