Changeset 108194 in vbox for trunk/src/VBox/Runtime/common/script/scriptlex.cpp
- Timestamp:
- Feb 13, 2025 2:35:47 PM (3 months ago)
- svn:sync-xref-src-repo-rev:
- 167511
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/script/scriptlex.cpp
r108065 r108194 1029 1029 /* Increase memory. */ 1030 1030 size_t cchMaxNew = pThis->cchStrLitMax + 64; 1031 char *pszNew = NULL;1031 char *pszNew = pThis->pszStrLit; 1032 1032 rc = RTStrRealloc(&pszNew, cchMaxNew * sizeof(char)); 1033 1033 if (RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.