From 2d48706d7476ce434143c1ab2a26ba616144522d Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Tue, 10 Oct 2006 19:20:32 +0900 Subject: [PATCH] msi: Fix a memory leak. --- dlls/msi/table.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/msi/table.c b/dlls/msi/table.c index 8fe37288920..4c0075a7311 100644 --- a/dlls/msi/table.c +++ b/dlls/msi/table.c @@ -977,6 +977,7 @@ static UINT get_tablecolumns( MSIDATABASE *db, { ERR("oops. data in the _Columns table isn't in the right " "order for table %s\n", debugstr_w(szTableName)); + msi_free_colinfo(colinfo, n+1 ); return ERROR_FUNCTION_FAILED; } }