msi: Remove unneeded address-of operators from array names.
This commit is contained in:
parent
da1a84f6e4
commit
0f75796a28
|
@ -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 );
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue