msi: Remove unneeded address-of operators from array names.

oldstable
Andrew Talbot 2008-07-11 10:41:39 +01:00 committed by Alexandre Julliard
parent da1a84f6e4
commit 0f75796a28
2 changed files with 2 additions and 2 deletions

View File

@ -2846,7 +2846,7 @@ UINT WINAPI MsiGetFileHashW( LPCWSTR szFilePath, DWORD dwOptions,
MD5Final( &ctx );
UnmapViewOfFile( p );
memcpy( pHash->dwData, &ctx.digest, sizeof pHash->dwData );
memcpy( pHash->dwData, ctx.digest, sizeof pHash->dwData );
r = ERROR_SUCCESS;
}
CloseHandle( mapping );

View File

@ -443,7 +443,7 @@ MSISUMMARYINFO *MSI_GetSummaryInformationW( IStorage *stg, UINT uiUpdateCount )
if( !si )
return si;
memset( &si->property, 0, sizeof si->property );
memset( si->property, 0, sizeof si->property );
si->update_count = uiUpdateCount;
IStorage_AddRef( stg );
si->storage = stg;