Kaydet (Commit) b50adb3f authored tarafından Fridrich Štrba's avatar Fridrich Štrba

Don't truncate pointers to 32-bit ints on win64

Change-Id: I5305bf7c82cd3f9f4437de59b53024ef97a7fbc8
üst 5bf53717
......@@ -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 )
{
......
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