From e5e7ba1b55dee3e5fcfbdb24359a4caa1c488330 Mon Sep 17 00:00:00 2001 From: LunaMoo Date: Tue, 14 Nov 2017 10:17:20 +0100 Subject: [PATCH] Fix Memory Leak :D --- Core/AVIDump.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/AVIDump.cpp b/Core/AVIDump.cpp index 02c42dd2ee..6188a2bda8 100644 --- a/Core/AVIDump.cpp +++ b/Core/AVIDump.cpp @@ -224,6 +224,7 @@ void AVIDump::AddFrame() if (error) ERROR_LOG(G3D, "Error while encoding video: %d", error); #endif + delete[] flipbuffer; } void AVIDump::Stop() {