mirror of
https://github.com/php/php-src.git
synced 2025-08-19 08:49:28 +02:00
fix segfault in openssl_seal(), add test
This commit is contained in:
parent
f53f3b01dd
commit
2229e563e4
2 changed files with 47 additions and 0 deletions
|
@ -3041,7 +3041,9 @@ PHP_FUNCTION(openssl_seal)
|
|||
pkeys = safe_emalloc(nkeys, sizeof(*pkeys), 0);
|
||||
eksl = safe_emalloc(nkeys, sizeof(*eksl), 0);
|
||||
eks = safe_emalloc(nkeys, sizeof(*eks), 0);
|
||||
memset(eks, 0, sizeof(*eks) * nkeys);
|
||||
key_resources = safe_emalloc(nkeys, sizeof(long), 0);
|
||||
memset(key_resources, 0, sizeof(*key_resources) * nkeys);
|
||||
|
||||
/* get the public keys we are using to seal this data */
|
||||
zend_hash_internal_pointer_reset_ex(pubkeysht, &pos);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue