Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Feb 14, 2016, 6:08:13 PM (8 years ago)
Author:
landauf
Message:

fixed code to compile in 64bit mode

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/libraries/util/SignalHandler.cc

    r11071 r11115  
    722722        // Now print information about where the fault occured
    723723        output += " at location " + SignalHandler::pointerToString(pExceptionRecord->ExceptionAddress);
    724         if ((hModule = (HMODULE) SignalHandler::getModuleBase((DWORD) pExceptionRecord->ExceptionAddress)) && GetModuleFileName(hModule, szModule, MAX_PATH))
     724        if ((hModule = (HMODULE) SignalHandler::getModuleBase(pExceptionRecord->ExceptionAddress)) && GetModuleFileName(hModule, szModule, MAX_PATH))
    725725        {
    726726            output += " in module ";
     
    748748    /// Retrieves the base address of the module that contains the specified address.
    749749    // Code from Dr. Mingw by Jos\E9 Fonseca
    750     /* static */ DWORD SignalHandler::getModuleBase(DWORD dwAddress)
     750    /* static */ PVOID SignalHandler::getModuleBase(LPCVOID dwAddress)
    751751    {
    752752        MEMORY_BASIC_INFORMATION Buffer;
    753753
    754         return VirtualQuery((LPCVOID) dwAddress, &Buffer, sizeof(Buffer)) ? (DWORD) Buffer.AllocationBase : 0;
     754        return VirtualQuery(dwAddress, &Buffer, sizeof(Buffer)) ? Buffer.AllocationBase : 0;
    755755    }
    756756
Note: See TracChangeset for help on using the changeset viewer.