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

Change-Id: I5305bf7c82cd3f9f4437de59b53024ef97a7fbc8
This commit is contained in:
Fridrich Štrba
2013-06-04 14:21:42 +02:00
parent 5bf53717ec
commit b50adb3f76

View File

@@ -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 )
{