Changeset 103275 in vbox for trunk/src/VBox/Runtime/common/dbg
- Timestamp:
- Feb 8, 2024 11:56:18 AM (15 months ago)
- svn:sync-xref-src-repo-rev:
- 161567
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgmod.cpp
r103260 r103275 610 610 if (pszName) 611 611 { 612 size_t const cchName = strlen(pszName); 613 size_t const cchExtFileBuf = cchName + strlen(pszExt) + 1; 614 615 char *pszExtFileBuf = (char *)alloca(cchExtFileBuf); 616 AssertPtrReturn(pszExtFileBuf, VERR_NO_MEMORY); 617 618 memcpy(pszExtFileBuf, pszName, cchName + 1); 619 RTPathStripSuffix(pszExtFileBuf); 620 int rc2 = RTStrCat(pszExtFileBuf, cchExtFileBuf, pszExt); 621 AssertRCReturn(rc2, rc2); 622 623 pszExtFile = pszExtFileBuf; 612 size_t cchName = strlen(pszName); 613 char *pszExtFileBuf = (char *)alloca(cchName + strlen(pszExt) + 1); 614 if (pszExtFileBuf) 615 { 616 memcpy(pszExtFileBuf, pszName, cchName + 1); 617 RTPathStripSuffix(pszExtFileBuf); 618 pszExtFile = strcat(pszExtFileBuf, pszExt); 619 } 624 620 } 625 621 }
Note:
See TracChangeset
for help on using the changeset viewer.