1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-17 00:29:31 +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
commit 4a38b92a4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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) {