mirror of
https://github.com/cc65/cc65.git
synced 2025-01-03 16:33:19 +00:00
Merge pull request #2415 from polluks/patch-13
[grc65] Fixed segv of empty resource file
This commit is contained in:
commit
5c3ff714ae
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user