Don't truncate pointers to 32-bit ints on win64
Change-Id: I5305bf7c82cd3f9f4437de59b53024ef97a7fbc8
This commit is contained in:
@@ -324,7 +324,7 @@ static sal_Bool SAL_CALL _osl_addressGetModuleURL_NT4( void *pv, rtl_uString **p
|
||||
ZeroMemory( &ModuleInfo, sizeof(ModuleInfo) );
|
||||
ModuleInfo.SizeOfStruct = sizeof(ModuleInfo);
|
||||
|
||||
bSuccess = (sal_Bool)(!!lpfnSymGetModuleInfo( GetCurrentProcess(), (DWORD)pv, &ModuleInfo ));
|
||||
bSuccess = (sal_Bool)(!!lpfnSymGetModuleInfo( GetCurrentProcess(), (DWORD_PTR)pv, &ModuleInfo ));
|
||||
|
||||
if ( bSuccess )
|
||||
{
|
||||
|
Reference in New Issue
Block a user