audio embedding free() (but still memory leakage detected)

This commit is contained in:
李为 2024-11-14 14:50:49 +08:00
parent fc25544867
commit aad0167bc3

View file

@ -763,6 +763,7 @@ static bool omni_eval_audio_embed(llama_context *ctx_llama, ggml_tensor *audio_e
} }
*n_past += n_eval; *n_past += n_eval;
} }
free(audio_embed_data);
return true; return true;
} }