From: Herman Semenov Date: Fri, 16 Feb 2024 12:43:23 +0000 (+0000) Subject: llava : removed excess free(NULL) operation (#5531) X-Git-Tag: upstream/0.0.4488~2322 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=4cb072769804c77ab466bc8351c76ede9d5ba49d;p=pkg%2Fggml%2Fsources%2Fllama.cpp llava : removed excess free(NULL) operation (#5531) --- diff --git a/examples/llava/llava.cpp b/examples/llava/llava.cpp index 4ed310a0..4cb65a07 100644 --- a/examples/llava/llava.cpp +++ b/examples/llava/llava.cpp @@ -315,7 +315,6 @@ static bool llava_image_embed_make_with_clip_img(clip_ctx * ctx_clip, int n_thre float * image_embd = (float *)malloc(clip_embd_nbytes(ctx_clip)*6); // TODO: base on gridsize/llava model if (!image_embd) { fprintf(stderr, "Unable to allocate memory for image embeddings\n"); - free(image_embd); return false; }