From 8d7bbd18094cd75a475d2f6905c6a63e8fdc2034 Mon Sep 17 00:00:00 2001 From: Mike McCormack Date: Thu, 5 Oct 2006 17:00:21 +0900 Subject: [PATCH] msi: Remove an unused variable. --- dlls/msi/table.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/dlls/msi/table.c b/dlls/msi/table.c index 455e3629a5b..6362f139202 100644 --- a/dlls/msi/table.c +++ b/dlls/msi/table.c @@ -1950,7 +1950,7 @@ UINT msi_table_apply_transform( MSIDATABASE *db, IStorage *stg ) IEnumSTATSTG *stgenum = NULL; HRESULT r; STATSTG stat; - ULONG n, count; + ULONG count; WCHAR name[0x40]; string_table *strings; UINT ret = ERROR_FUNCTION_FAILED; @@ -1965,7 +1965,6 @@ UINT msi_table_apply_transform( MSIDATABASE *db, IStorage *stg ) if( FAILED( r ) ) goto end; - n = 0; ret = ERROR_SUCCESS; while( r == ERROR_SUCCESS ) @@ -1979,7 +1978,6 @@ UINT msi_table_apply_transform( MSIDATABASE *db, IStorage *stg ) ret = msi_table_load_transform( db, stg, strings, name+1 ); else TRACE("transform contains stream %s\n", debugstr_w(name)); - n++; } if ( ret == ERROR_SUCCESS )