One more fix. . .

This commit is contained in:
Tim Edwards 2020-05-29 16:51:20 -04:00
parent 09e85dedab
commit 643bd096ea
1 changed files with 4 additions and 0 deletions

View File

@ -1555,12 +1555,16 @@ lefGetProperties(stackItem, i, clientData)
if (*psrch == '\0') break;
if (*psrch == '\"')
{
psrch++;
while (*psrch != '\"' && *psrch != '\0') psrch++;
if (*psrch == '\0') break;
psrch++;
}
else
{
psrch++;
while (*psrch != ' ' && *psrch != '\0') psrch++;
}
if (*psrch == '\0') break;
psrch++;
}