Changeset 4555 for trunk/src/kernel32/exceptstackdump.cpp
- Timestamp:
- Nov 5, 2000, 2:40:47 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kernel32/exceptstackdump.cpp
r3528 r4555 1 /* $Id: exceptstackdump.cpp,v 1. 2 2000-05-13 07:16:11sandervl Exp $ */1 /* $Id: exceptstackdump.cpp,v 1.3 2000-11-05 13:40:45 sandervl Exp $ */ 2 2 /* 3 3 * Stack dump code … … 240 240 // dprintf(("skiploop %x (rc %x, Attr %x Size %d)\n", *stacktop, rc, Attr, Size)); 241 241 if(WinExe && WinExe->insideModule(addr) && WinExe->insideModuleCode(addr)) { 242 sprintf(Name, "%s .EXE", WinExe->getModuleName());242 sprintf(Name, "%s", WinExe->getModuleName()); 243 243 dprintf(("%-13s at 0x%08x\n", Name, addr)); 244 244 } … … 246 246 Win32DllBase *dll = Win32DllBase::findModuleByAddr(addr); 247 247 if(dll && dll->insideModuleCode(addr)) { 248 sprintf(Name, "%s .DLL", dll->getModuleName());248 sprintf(Name, "%s", dll->getModuleName()); 249 249 dprintf(("%-13s at 0x%08x\n", Name, addr)); 250 250 } … … 291 291 else { 292 292 if(WinExe && WinExe->insideModule(addr) && WinExe->insideModuleCode(addr)) { 293 sprintf(Name, "%s .EXE", WinExe->getModuleName());293 sprintf(Name, "%s", WinExe->getModuleName()); 294 294 dprintf(("%-13s at 0x%08x\n", Name, addr)); 295 295 } … … 297 297 Win32DllBase *dll = Win32DllBase::findModuleByAddr(addr); 298 298 if(dll && dll->insideModuleCode(addr)) { 299 sprintf(Name, "%s .DLL", dll->getModuleName());299 sprintf(Name, "%s", dll->getModuleName()); 300 300 dprintf(("%-13s at 0x%08x\n", Name, addr)); 301 301 } … … 309 309 addr = pCtxRec->ctx_RegEip; 310 310 if(WinExe && WinExe->insideModule(addr) && WinExe->insideModuleCode(addr)) { 311 sprintf(Name, "%s .EXE", WinExe->getModuleName());311 sprintf(Name, "%s", WinExe->getModuleName()); 312 312 dprintf(("%-13s at 0x%08x\n", Name, addr)); 313 313 } … … 315 315 Win32DllBase *dll = Win32DllBase::findModuleByAddr(addr); 316 316 if(dll && dll->insideModuleCode(addr)) { 317 sprintf(Name, "%s .DLL", dll->getModuleName());317 sprintf(Name, "%s", dll->getModuleName()); 318 318 dprintf(("%-13s at 0x%08x\n", Name, addr)); 319 319 }
Note:
See TracChangeset
for help on using the changeset viewer.