Changeset 103285 in vbox for trunk/src/VBox/Debugger
- Timestamp:
- Feb 8, 2024 3:27:12 PM (10 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGPlugInDarwin.cpp
r103275 r103285 716 716 { 717 717 char szTmp[RTDBG_SEGMENT_NAME_LENGTH + sizeof("_start")]; 718 strcat(strcpy(szTmp, aSegs[iSeg].szName), "_start"); 719 rc = RTDbgModSymbolAdd(hMod, szTmp, iSeg, 0 /*uRva*/, 0 /*cb*/, 0 /*fFlags*/, NULL); 718 rc = RTStrCat(RTStrCopy2(szTmp, sizeof(szTmp), aSegs[iSeg].szName), sizeof(szTmp), "_start"); 719 if (RT_SUCCESS(rc)) 720 rc = RTDbgModSymbolAdd(hMod, szTmp, iSeg, 0 /*uRva*/, 0 /*cb*/, 0 /*fFlags*/, NULL); 720 721 } 721 722 uRvaNext += aSegs[iSeg].cb;
Note:
See TracChangeset
for help on using the changeset viewer.