From 776ee9ee818dbee9b639c31ab5ae736373b31c61 Mon Sep 17 00:00:00 2001 From: Juan Lang Date: Thu, 17 Dec 2009 10:46:41 -0800 Subject: [PATCH] ole32: Fix a memory leak. --- dlls/ole32/stg_prop.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/ole32/stg_prop.c b/dlls/ole32/stg_prop.c index 643848a6213..cd2395fd40a 100644 --- a/dlls/ole32/stg_prop.c +++ b/dlls/ole32/stg_prop.c @@ -1406,6 +1406,7 @@ static HRESULT PropertyStorage_ReadFromStream(PropertyStorage_impl *This) idOffset->propid, &prop, This->codePage); } } + PropVariantClear(&prop); } } } -- 2.11.4.GIT