-
Notifications
You must be signed in to change notification settings - Fork 35
Closed
Labels
bugBug reportBug reportcompletedWork has been completed on this issue and changes have been committed to `develop` branch..Work has been completed on this issue and changes have been committed to `develop` branch..
Description
This unit can generated an out of bounds error when following white space is at the end of a string. The Idx
index can go beyond the end of the string.
The bug is in the line:
Line 407 in 02656b8
while TCharacter.IsWhiteSpace(Str[Idx]) do |
A fix is to change the above line to:
while (Idx <= Length(Str)) and TCharacter.IsWhiteSpace(Str[Idx]) do
Metadata
Metadata
Assignees
Labels
bugBug reportBug reportcompletedWork has been completed on this issue and changes have been committed to `develop` branch..Work has been completed on this issue and changes have been committed to `develop` branch..