mirror of
https://github.com/ggml-org/whisper.cpp.git
synced 2026-08-06 18:10:54 -05:00
This commit addresses a memory leak issue in the voice activity detection (VAD) where the ggml_context is not stored within the vad context structure. The motivation for this change that this is causing the context memory to stay allocated and the tensor still point to that memory but this memory is never freed. Resolves: https://github.com/ggml-org/whisper.cpp/issues/3452