mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
sync fusion with wine 1.1.13
svn path=/trunk/; revision=38839
This commit is contained in:
parent
7195b734f2
commit
951c595722
2 changed files with 3 additions and 3 deletions
|
@ -150,7 +150,7 @@ static HRESULT WINAPI IAssemblyNameImpl_GetProperty(IAssemblyName *iface,
|
|||
*pcbProperty = 0;
|
||||
if (name->name)
|
||||
{
|
||||
lstrcpyW((LPWSTR)pvProperty, name->name);
|
||||
lstrcpyW(pvProperty, name->name);
|
||||
*pcbProperty = (lstrlenW(name->name) + 1) * 2;
|
||||
}
|
||||
break;
|
||||
|
@ -187,7 +187,7 @@ static HRESULT WINAPI IAssemblyNameImpl_GetProperty(IAssemblyName *iface,
|
|||
*pcbProperty = 0;
|
||||
if (name->culture)
|
||||
{
|
||||
lstrcpyW((LPWSTR)pvProperty, name->culture);
|
||||
lstrcpyW(pvProperty, name->culture);
|
||||
*pcbProperty = (lstrlenW(name->culture) + 1) * 2;
|
||||
}
|
||||
break;
|
||||
|
|
|
@ -153,7 +153,7 @@ static BYTE *GetData(BYTE *pData, ULONG *pLength)
|
|||
|
||||
static VOID *assembly_data_offset(ASSEMBLY *assembly, ULONG offset)
|
||||
{
|
||||
return (VOID *)&assembly->data[offset];
|
||||
return &assembly->data[offset];
|
||||
}
|
||||
|
||||
#define MAX_TABLES_WORD 0xFFFF
|
||||
|
|
Loading…
Reference in a new issue