1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

Merge pull request #2415 from polluks/patch-13

[grc65] Fixed segv of empty resource file
This commit is contained in:
Bob Andrews 2024-02-23 16:16:46 +01:00 committed by GitHub
commit 5c3ff714ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -231,9 +231,11 @@ static int findToken (const char * const *tokenTbl, const char *token)
/* takes as input table of tokens and token, returns position in table or -1 if not found */
int i;
for (i = 0; tokenTbl[i][0]; i++) {
if (strcmp (tokenTbl[i], token) == 0) {
return i;
if (token != NULL) {
for (i = 0; tokenTbl[i][0]; i++) {
if (strcmp (tokenTbl[i], token) == 0) {
return i;
}
}
}