From 84541cc5e358a39e8a1bc3a3387e1e189571567e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Mon, 5 Nov 2012 15:46:45 +0100 Subject: [PATCH] msi: Fix a leak (coverity). --- dlls/msi/table.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/msi/table.c b/dlls/msi/table.c index a7798e5ba26..c5aa6851036 100644 --- a/dlls/msi/table.c +++ b/dlls/msi/table.c @@ -2267,6 +2267,7 @@ static UINT msi_record_encoded_stream_name( const MSITABLEVIEW *tv, MSIRECORD *r if ( !p ) { r = ERROR_OUTOFMEMORY; + msi_free(sval); goto err; } stname = p;