BUG/MINOR: ssl_crtlist: handle a possible strdup() failure

This defect was found by the coccinelle script "unchecked-strdup.cocci".
It can be backported to all supported branches.
This commit is contained in:
Ilia Shipitsin 2024-12-03 17:13:05 +01:00 committed by Willy Tarreau
parent abee546850
commit ce30bc1730

View File

@ -608,6 +608,11 @@ int crtlist_parse_file(char *file, struct bind_conf *bind_conf, struct proxy *cu
found++;
free(cc.crt);
cc.crt = strdup(crt_path);
if (cc.crt == NULL) {
cfgerr |= ERR_ALERT | ERR_FATAL;
goto error;
}
ckchs = ckch_store_new_load_files_conf(crt_path, &cc, err);
if (ckchs == NULL) {
cfgerr |= ERR_ALERT | ERR_FATAL;