Commit 0f75796a authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

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

parent da1a84f6
...@@ -2846,7 +2846,7 @@ UINT WINAPI MsiGetFileHashW( LPCWSTR szFilePath, DWORD dwOptions, ...@@ -2846,7 +2846,7 @@ UINT WINAPI MsiGetFileHashW( LPCWSTR szFilePath, DWORD dwOptions,
MD5Final( &ctx ); MD5Final( &ctx );
UnmapViewOfFile( p ); UnmapViewOfFile( p );
memcpy( pHash->dwData, &ctx.digest, sizeof pHash->dwData ); memcpy( pHash->dwData, ctx.digest, sizeof pHash->dwData );
r = ERROR_SUCCESS; r = ERROR_SUCCESS;
} }
CloseHandle( mapping ); CloseHandle( mapping );
......
...@@ -443,7 +443,7 @@ MSISUMMARYINFO *MSI_GetSummaryInformationW( IStorage *stg, UINT uiUpdateCount ) ...@@ -443,7 +443,7 @@ MSISUMMARYINFO *MSI_GetSummaryInformationW( IStorage *stg, UINT uiUpdateCount )
if( !si ) if( !si )
return si; return si;
memset( &si->property, 0, sizeof si->property ); memset( si->property, 0, sizeof si->property );
si->update_count = uiUpdateCount; si->update_count = uiUpdateCount;
IStorage_AddRef( stg ); IStorage_AddRef( stg );
si->storage = stg; si->storage = stg;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment