From 0aceeaecc839fc476d53c60aaeee0625148e7d10 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Thu, 4 Apr 2024 09:49:21 +0200 Subject: [PATCH] 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 --- common/common.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/common/common.cpp b/common/common.cpp index b8323c1c1a90b1..3e2df6e34adb43 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -1928,11 +1928,6 @@ struct llama_model * llama_load_model_from_url( return NULL; } - if (!curl) { - fprintf(stderr, "%s: error initializing libcurl\n", __func__); - return NULL; - } - if (!llama_download_file(curl, model_url, path_model)) { return NULL; }