1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-04 09:39:42 +02:00

Fix another memory leak in FFmpeg import.

This commit is contained in:
Paul Licameli 2016-04-13 00:22:39 -04:00
parent c760361867
commit 316ed3afc2

View File

@ -304,6 +304,7 @@ FFmpegContext::~FFmpegContext()
if (pb) {
ufile_close(pb);
av_free(pb->buffer);
av_free(pb);
}
}