mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
openssl rehash: add check for OPENSSL_strdup
As the potential failure of the memory allocation, it should be better to check the return value of OPENSSL_strdup() and return error if fails. Also, we need to restore the 'ep' to be NULL if fails. Signed-off-by: Jiasheng Jiang <jiasheng@iscas.ac.cn> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17676)
This commit is contained in:
parent
bb2fb5d7cc
commit
79cda38cff
@ -168,6 +168,12 @@ static int add_entry(enum Type type, unsigned int hash, const char *filename,
|
||||
*ep = nilhentry;
|
||||
ep->old_id = ~0;
|
||||
ep->filename = OPENSSL_strdup(filename);
|
||||
if (ep->filename == NULL) {
|
||||
OPENSSL_free(ep);
|
||||
ep = NULL;
|
||||
BIO_printf(bio_err, "out of memory\n");
|
||||
return 1;
|
||||
}
|
||||
if (bp->last_entry)
|
||||
bp->last_entry->next = ep;
|
||||
if (bp->first_entry == NULL)
|
||||
|
Loading…
x
Reference in New Issue
Block a user