Changeset 103471 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Feb 20, 2024 9:06:22 AM (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControlSession.cpp
r103415 r103471 1738 1738 if (cch > pCtx->cbAlloc - pCtx->cb - 1 /* Ending terminator */) 1739 1739 { 1740 char *pszNew; 1741 int rc2 = RTStrRealloc(&pszNew, pCtx->cbAlloc + RT_MAX(_4K, cch)); 1740 int rc2 = RTStrRealloc(&pCtx->psz, pCtx->cbAlloc + RT_MAX(_4K, cch)); 1742 1741 AssertRCReturn(rc2, rc2); 1743 pCtx->psz = pszNew;1744 1742 } 1745 1743
Note:
See TracChangeset
for help on using the changeset viewer.