Ignore:
Timestamp:
Jul 5, 2002, 7:59:30 PM (23 years ago)
Author:
sandervl
Message:

minor updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/exceptions.cpp

    r8836 r8840  
    1 /* $Id: exceptions.cpp,v 1.63 2002-07-05 15:09:59 sandervl Exp $ */
     1/* $Id: exceptions.cpp,v 1.64 2002-07-05 17:59:30 sandervl Exp $ */
    22
    33/*
     
    578578        rc = CurrentUnhExceptionFlt(lpexpExceptionInfo);
    579579        if(rc != WINEXCEPTION_CONTINUE_SEARCH)
    580         return rc;
    581     }
    582 
     580            return rc;
     581    }
    583582
    584583    if (DosQueryModFromEIP(&hmod, &iObj, sizeof(szModName), szModName, &offObj, (ULONG)lpexpExceptionInfo->ExceptionRecord->ExceptionAddress))
     
    620619
    621620    case MBID_ABORT:
    622        KillWin32Process();
    623        // fall-through
    624 
    625621    case MBID_RETRY:
    626622    default:
     
    10671063    if(szExceptionLogFileName[0] == 0) {
    10681064        strcpy(szExceptionLogFileName, kernel32Path);
    1069         strcat(szExceptionLogFileName, "\\exception.log");
     1065        strcat(szExceptionLogFileName, "\\except.log");
    10701066    }
    10711067    rc = DosOpen(szExceptionLogFileName,         /* File path name */
     
    13011297        else    goto continuesearch; //pass on to OS/2 RTL or app exception handler
    13021298
     1299        //Log fatal exception here
     1300        logException();
     1301
    13031302        dprintf(("KERNEL32: OS2ExceptionHandler: Continue and kill\n"));
    13041303       
    1305         //Log fatal exception here
    1306         logException();
    1307 
    13081304        pCtxRec->ctx_RegEip = (ULONG)KillWin32Process;
    13091305        pCtxRec->ctx_RegEsp = pCtxRec->ctx_RegEsp + 0x10;
Note: See TracChangeset for help on using the changeset viewer.