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.
1 parent 8cf9c2f commit 5d62cfbCopy full SHA for 5d62cfb
ext/openssl/openssl.c
@@ -7647,7 +7647,7 @@ PHP_OPENSSL_API zend_string* php_openssl_random_pseudo_bytes(zend_long buffer_le
7647
return NULL;
7648
}
7649
if (ZEND_LONG_INT_OVFL(buffer_length)) {
7650
- zend_argument_value_error(1, "must be less than 2147483648");
+ zend_argument_value_error(1, "must be less than or equal to %d", INT_MAX);
7651
7652
7653
buffer = zend_string_alloc(buffer_length, 0);
0 commit comments