mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
rehash.c: handle possible null pointer returned by OPENSSL_strdup
Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24980)
This commit is contained in:
parent
26521fdcf4
commit
a5cd06f7ff
@ -563,6 +563,11 @@ int rehash_main(int argc, char **argv)
|
||||
} else if ((env = getenv(X509_get_default_cert_dir_env())) != NULL) {
|
||||
char lsc[2] = { LIST_SEPARATOR_CHAR, '\0' };
|
||||
m = OPENSSL_strdup(env);
|
||||
if (m == NULL) {
|
||||
BIO_puts(bio_err, "out of memory\n");
|
||||
errs = 1;
|
||||
goto end;
|
||||
}
|
||||
for (e = strtok(m, lsc); e != NULL; e = strtok(NULL, lsc))
|
||||
errs += do_dir(e, h);
|
||||
OPENSSL_free(m);
|
||||
|
Loading…
x
Reference in New Issue
Block a user