Ignore:
Timestamp:
Sep 6, 2008, 11:53:33 PM (16 years ago)
Author:
dai
Message:

ppobj_dsを、debugSectionsに書き直した。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/BasicCompiler_Common/CDebugThreadInfo.cpp

    r636 r740  
    2727
    2828    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;
    3131
    3232    ReadProcessMemory(hDebugProcess,
     
    8080    extern DWORD ImageBase;
    8181    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){
    8484                pobj_DBDebugSection->choice(i);
    8585                break;
Note: See TracChangeset for help on using the changeset viewer.