mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2025-10-30 08:01:01 +00:00
Fixed hang related to mod incompatibility checking
This commit is contained in:
parent
cecb145bbb
commit
8109bbcb59
1 changed files with 4 additions and 2 deletions
|
|
@ -212,9 +212,11 @@ static bool mod_list_incompatible_match(struct ModListEntry* a, struct ModListEn
|
||||||
char* bi = b->incompatible;
|
char* bi = b->incompatible;
|
||||||
char* atoken = NULL;
|
char* atoken = NULL;
|
||||||
char* btoken = NULL;
|
char* btoken = NULL;
|
||||||
|
char* arest = NULL;
|
||||||
|
char* brest = NULL;
|
||||||
|
|
||||||
while ((atoken = strtok(ai, " "))) {
|
for (atoken = strtok_r(ai, " ", &arest); atoken != NULL; atoken = strtok_r(NULL, " ", &arest)) {
|
||||||
while((btoken = strtok(bi, " "))) {
|
for (btoken = strtok_r(bi, " ", &brest); btoken != NULL; btoken = strtok_r(NULL, " ", &brest)) {
|
||||||
if (!strcmp(atoken, btoken)) {
|
if (!strcmp(atoken, btoken)) {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue