mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
Fix bug #73634 - grapheme_strpos illegal memory access
This commit is contained in:
parent
2c7909697a
commit
8c44d07fd4
@ -110,7 +110,8 @@ PHP_FUNCTION(grapheme_strpos)
|
||||
size_t haystack_len, needle_len;
|
||||
const char *found;
|
||||
zend_long loffset = 0;
|
||||
int32_t offset = 0, noffset = 0;
|
||||
int32_t offset = 0;
|
||||
size_t noffset = 0;
|
||||
zend_long ret_pos;
|
||||
|
||||
if (zend_parse_parameters(ZEND_NUM_ARGS(), "ss|l", &haystack, &haystack_len, &needle, &needle_len, &loffset) == FAILURE) {
|
||||
|
Loading…
Reference in New Issue
Block a user