Module: wine Branch: master Commit: 84541cc5e358a39e8a1bc3a3387e1e189571567e URL: http://source.winehq.org/git/wine.git/?a=commit;h=84541cc5e358a39e8a1bc3a338...
Author: Frédéric Delanoy frederic.delanoy@gmail.com Date: Mon Nov 5 15:46:45 2012 +0100
msi: Fix a leak (coverity).
---
dlls/msi/table.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/dlls/msi/table.c b/dlls/msi/table.c index a7798e5..c5aa685 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;