common: remove duplicate check for curl (#6471)

This commit removes one of the two identical checks for curl being NULL
in llama_load_model_from_url.

Signed-off-by: Daniel Bevenius <daniel.bevenius@gmail.com>
This commit is contained in:
Daniel Bevenius 2024-04-04 09:49:21 +02:00 committed by GitHub
parent 9b84ae1806
commit 4bcd6b959c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1928,11 +1928,6 @@ struct llama_model * llama_load_model_from_url(
return NULL; return NULL;
} }
if (!curl) {
fprintf(stderr, "%s: error initializing libcurl\n", __func__);
return NULL;
}
if (!llama_download_file(curl, model_url, path_model)) { if (!llama_download_file(curl, model_url, path_model)) {
return NULL; return NULL;
} }