llava : removed excess free(NULL) operation (#5531)

This commit is contained in:
Herman Semenov 2024-02-16 12:43:23 +00:00 committed by GitHub
parent 65085c713e
commit 4cb0727698
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}