From b02ba85fbc9ff1e9d58e06fb03e40a6f1f881b7b Mon Sep 17 00:00:00 2001 From: Vincent Povirk Date: Sun, 13 Dec 2009 19:20:58 -0600 Subject: [PATCH] windowscodecs: Fix a memory leak in a test. --- dlls/windowscodecs/tests/converter.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/windowscodecs/tests/converter.c b/dlls/windowscodecs/tests/converter.c index 3f82369acd3..5c66636866e 100644 --- a/dlls/windowscodecs/tests/converter.c +++ b/dlls/windowscodecs/tests/converter.c @@ -413,6 +413,8 @@ static void test_encoder(const struct bitmap_data *src, const CLSID* clsid_encod IStream_Release(stream); } + + IWICBitmapEncoder_Release(encoder); } DeleteTestBitmap(src_bitmap);