From d36a534394e7954fa8241b08cfa906c00a9d3e2b Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sat, 18 Nov 2023 19:23:26 -0800 Subject: playit: plug prerendered buf leak when seekable Trivial fix --- src/playit.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/playit.c') diff --git a/src/playit.c b/src/playit.c index da3d642..1294fde 100644 --- a/src/playit.c +++ b/src/playit.c @@ -205,5 +205,6 @@ void playit_destroy(playit_t *playit) assert(playit->song); csf_free(playit->song); + free(playit->prerendered.buf); free(playit); } -- cgit v1.2.3