Ignore:
Timestamp:
Oct 2, 2023, 11:34:35 PM (23 months ago)
Author:
gyoung
Message:

Remaining changes from merge with Lars 2.9 branch

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/mediafolder/c/helper/except.cpp

    r41 r104  
    455455{
    456456  ULONG rc = XCPT_CONTINUE_SEARCH;
    457  
     457
    458458  if (pERepRec->fHandlerFlags & EH_EXIT_UNWIND)
    459459    return (XCPT_CONTINUE_SEARCH);
     
    495495{
    496496  ULONG rc = XCPT_CONTINUE_SEARCH;
    497  
     497
    498498  if (pERepRec->fHandlerFlags & EH_EXIT_UNWIND)
    499499    return (XCPT_CONTINUE_SEARCH);
     
    502502  if (pERepRec->fHandlerFlags & EH_NESTED_CALL)
    503503    return (XCPT_CONTINUE_SEARCH);
    504  
     504
    505505  if ((pERepRec->ExceptionNum & XCPT_SEVERITY_CODE) == XCPT_FATAL_EXCEPTION)
    506506    {
     
    530530
    531531  return 'c';
    532 } 
     532}
    533533
    534534ULONG APIENTRY HandleFatalException (PEXCEPTIONREPORTRECORD       pERepRec,
     
    641641          }
    642642#endif
    643        
     643
    644644        fAlreadyTrapped = TRUE;
    645645        /* end  John Currier's recursion prevention */
     
    11671167}
    11681168
    1169 #include <exe.h>
    11701169#include <newexe.h>
    11711170#define  FOR_EXEHDR  1  /* avoid define conflicts between newexe.h and exe386.h */
     
    18201819               do {
    18211820                  read(fh,(void *)&FirstLine,sizeof(FirstLine));
    1822    
     1821
    18231822                  if (FirstLine.LineNum!=0) {
    18241823                     fprintf(hTrap,"Missing Line table information\n");
     
    18491848                        }
    18501849                        break;
    1851    
     1850
    18521851                     case 1:
    18531852                        lseek(fh, sizeof(struct linlist_rec), SEEK_CUR);
    18541853                        break;
    1855    
     1854
    18561855                     case 2:
    18571856                        lseek(fh, sizeof(struct linsourcelist_rec), SEEK_CUR);
    18581857                        break;
    1859    
     1858
    18601859                     case 3:
    18611860                        lseek(fh, sizeof(struct filenam_rec), SEEK_CUR);
    18621861                        break;
    1863    
     1862
    18641863                     case 4:
    18651864                        lseek(fh, sizeof(struct pathtab_rec), SEEK_CUR);
    18661865                        break;
    1867    
     1866
    18681867                  }
    18691868               }
Note: See TracChangeset for help on using the changeset viewer.