1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-08 22:25:28 +00:00

Merged pull request #771 from DankRank/master.

da65: properly scan empty strings in info file.
This commit is contained in:
greg-king5
2018-10-08 01:24:04 -04:00
committed by GitHub

View File

@@ -413,6 +413,7 @@ Again:
case '\"':
NextChar ();
I = 0;
InfoSVal[0] = '\0';
while (C != EOF && C != '\"') {
if (GetEncodedChar (InfoSVal, &I, sizeof InfoSVal) < 0) {
if (C == EOF) {