Ignore:
Timestamp:
May 15, 2001, 6:15:18 PM (24 years ago)
Author:
umoeller
Message:

Lotsa fixes from the last two weeks.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/except.c

    r55 r68  
    313313 *
    314314 *@@added V0.9.2 (2000-03-10) [umoeller]
     315 *@@changed V0.9.12 (2001-05-12) [umoeller]: added seg:ofs to output always
    315316 */
    316317
     
    338339        // error:
    339340        fprintf(file,
    340                 " %-8s:%lu  Error: DosQueryModFromEIP returned %lu\n",
     341                " %-8s Error: DosQueryModFromEIP returned %lu\n",
    341342                szMod1,
    342                 ulObject,
    343343                arc);
    344344    }
     
    348348
    349349        fprintf(file,
    350                 " %-8s:%lu   ",
     350                " %-8s %02lX:%08lX\n                                 ",
    351351                szMod1,
    352                 ulObject);
     352                ulObject + 1,       // V0.9.12 (2001-05-12) [umoeller]
     353                ulOffset);          // V0.9.12 (2001-05-12) [umoeller]
    353354
    354355        DosQueryModuleName(hmod1, sizeof(szFullName), szFullName);
    355 
    356356        dbgPrintStackFrame(file,
    357357                           szFullName,
     
    381381    PULONG pulStackWord = 0;
    382382
    383     fprintf(file, "\n\nStack frames:\n              Address   Module:Object\n");
     383    fprintf(file, "\n\nStack frames:\n              Address   Module   seg:ofs\n");
    384384
    385385    // first the trapping address itself
Note: See TracChangeset for help on using the changeset viewer.