From 13eb82922cafff26363b85c1b9b18dd965dffa55 Mon Sep 17 00:00:00 2001 From: Sven Baars Date: Sun, 17 Feb 2019 11:16:21 +0100 Subject: [PATCH] windowscodecs/tests: Fix a memory leak (Valgrind). Signed-off-by: Sven Baars Signed-off-by: Vincent Povirk Signed-off-by: Alexandre Julliard --- 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 455c6ae2e61..b99f9871341 100644 --- a/dlls/windowscodecs/tests/converter.c +++ b/dlls/windowscodecs/tests/converter.c @@ -880,6 +880,8 @@ static void check_tiff_format(IStream *stream, const WICPixelFormatGUID *format) } else tag[i].value[0] = -1; + + PropVariantClear(&value); } IWICMetadataReader_Release(reader); -- 2.11.4.GIT