pull/6763/head^2
Gokhan Gulbiz 2023-03-15 08:36:43 +03:00
parent 3cfa197f69
commit da24f2fd62
No known key found for this signature in database
GPG Key ID: 608EF06B6BD1B45B
1 changed files with 2 additions and 1 deletions

View File

@ -697,7 +697,8 @@ ExtractTopComment(const char *inputString)
commentEndCharsIndex += commentStartCharsLength; commentEndCharsIndex += commentStartCharsLength;
while (inputString[commentEndCharsIndex] && commentEndCharsIndex < while (inputString[commentEndCharsIndex] && commentEndCharsIndex <
inputStringLen && !(inputString[commentEndCharsIndex] == '*' && inputStringLen && !(inputString[commentEndCharsIndex] == '*' &&
inputString[commentEndCharsIndex + 1] == '/')) inputString
[commentEndCharsIndex + 1] == '/'))
{ {
commentEndCharsIndex++; commentEndCharsIndex++;
} }