Changeset 104 for trunk/mediafolder/c/helper/except.cpp
- Timestamp:
- Oct 2, 2023, 11:34:35 PM (23 months ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property svn:mergeinfo
set to
/branches/v2.9 merged eligible /branches/v2.9_Lars merged eligible
-
Property svn:mergeinfo
set to
-
trunk/mediafolder/c/helper/except.cpp
r41 r104 455 455 { 456 456 ULONG rc = XCPT_CONTINUE_SEARCH; 457 457 458 458 if (pERepRec->fHandlerFlags & EH_EXIT_UNWIND) 459 459 return (XCPT_CONTINUE_SEARCH); … … 495 495 { 496 496 ULONG rc = XCPT_CONTINUE_SEARCH; 497 497 498 498 if (pERepRec->fHandlerFlags & EH_EXIT_UNWIND) 499 499 return (XCPT_CONTINUE_SEARCH); … … 502 502 if (pERepRec->fHandlerFlags & EH_NESTED_CALL) 503 503 return (XCPT_CONTINUE_SEARCH); 504 504 505 505 if ((pERepRec->ExceptionNum & XCPT_SEVERITY_CODE) == XCPT_FATAL_EXCEPTION) 506 506 { … … 530 530 531 531 return 'c'; 532 } 532 } 533 533 534 534 ULONG APIENTRY HandleFatalException (PEXCEPTIONREPORTRECORD pERepRec, … … 641 641 } 642 642 #endif 643 643 644 644 fAlreadyTrapped = TRUE; 645 645 /* end John Currier's recursion prevention */ … … 1167 1167 } 1168 1168 1169 #include <exe.h>1170 1169 #include <newexe.h> 1171 1170 #define FOR_EXEHDR 1 /* avoid define conflicts between newexe.h and exe386.h */ … … 1820 1819 do { 1821 1820 read(fh,(void *)&FirstLine,sizeof(FirstLine)); 1822 1821 1823 1822 if (FirstLine.LineNum!=0) { 1824 1823 fprintf(hTrap,"Missing Line table information\n"); … … 1849 1848 } 1850 1849 break; 1851 1850 1852 1851 case 1: 1853 1852 lseek(fh, sizeof(struct linlist_rec), SEEK_CUR); 1854 1853 break; 1855 1854 1856 1855 case 2: 1857 1856 lseek(fh, sizeof(struct linsourcelist_rec), SEEK_CUR); 1858 1857 break; 1859 1858 1860 1859 case 3: 1861 1860 lseek(fh, sizeof(struct filenam_rec), SEEK_CUR); 1862 1861 break; 1863 1862 1864 1863 case 4: 1865 1864 lseek(fh, sizeof(struct pathtab_rec), SEEK_CUR); 1866 1865 break; 1867 1866 1868 1867 } 1869 1868 }
Note:
See TracChangeset
for help on using the changeset viewer.