Changeset 108281 in vbox
- Timestamp:
- Feb 19, 2025 9:59:01 AM (3 weeks ago)
- svn:sync-xref-src-repo-rev:
- 167623
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/script/scriptlex.cpp
r108280 r108281 588 588 * @param cchCur How much of the current buffer is used. 589 589 * @param cchAdd How many additional characters are required. 590 * @param pTok The token to fill in if re-allocating the buffer failed. 590 * @param pTok The token to fill in if re-allocating the buffer failed. 591 591 */ 592 592 DECLINLINE(bool) rtScriptLexEnsureTmpBufSpace(PRTSCRIPTLEXINT pThis, char **ppchTmp, size_t *pcchTmp, … … 674 674 675 675 if (chTmp == '\0') 676 break; /* End of stream before closing lexeme. */ 676 break; /* End of stream before closing lexeme. */ 677 677 678 678 if (!rtScriptLexEnsureTmpBufSpace(pThis, &pszTmp, &cchTmp, cchComment, … … 892 892 893 893 if (pCfg->fFlags & RTSCRIPT_LEX_CFG_F_COMMENTS_AS_TOKENS) 894 { 894 { 895 895 if (phStrCacheComments) 896 896 *phStrCacheComments = pThis->hStrCacheComments;
Note:
See TracChangeset
for help on using the changeset viewer.