Changeset 740 in dev for trunk/ab5.0/abdev/BasicCompiler_Common/CDebugThreadInfo.cpp
- Timestamp:
- Sep 6, 2008, 11:53:33 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ab5.0/abdev/BasicCompiler_Common/CDebugThreadInfo.cpp
r636 r740 27 27 28 28 DWORD dwRWSectionPos; 29 dwRWSectionPos=pobj_DBDebugSection-> ppobj_ds[0]->dwImageBase+30 pobj_DBDebugSection-> ppobj_ds[0]->dwRVA_RWSection;29 dwRWSectionPos=pobj_DBDebugSection->debugSections[0]->dwImageBase+ 30 pobj_DBDebugSection->debugSections[0]->dwRVA_RWSection; 31 31 32 32 ReadProcessMemory(hDebugProcess, … … 80 80 extern DWORD ImageBase; 81 81 if((HMODULE)(ULONG_PTR)ImageBase!=hTargetModule){ 82 for(i=0;i<pobj_DBDebugSection-> num;i++){83 if((HMODULE)(ULONG_PTR)pobj_DBDebugSection-> ppobj_ds[i]->dwImageBase==hTargetModule){82 for(i=0;i<pobj_DBDebugSection->debugSections.size();i++){ 83 if((HMODULE)(ULONG_PTR)pobj_DBDebugSection->debugSections[i]->dwImageBase==hTargetModule){ 84 84 pobj_DBDebugSection->choice(i); 85 85 break;
Note:
See TracChangeset
for help on using the changeset viewer.