mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-25 13:35:12 +00:00
Merge pull request #38 from krmeet/mod-compatibility
Fix mod compatibility check (2)
This commit is contained in:
commit
56aa303d1f
1 changed files with 6 additions and 3 deletions
|
@ -44,8 +44,8 @@ static bool mods_incompatible_match(struct Mod* a, struct Mod* b) {
|
|||
return false;
|
||||
}
|
||||
|
||||
char* ai = a->incompatible;
|
||||
char* bi = b->incompatible;
|
||||
char* ai = strdup(a->incompatible);
|
||||
char* bi = strdup(b->incompatible);
|
||||
char* atoken = NULL;
|
||||
char* btoken = NULL;
|
||||
char* arest = NULL;
|
||||
|
@ -59,6 +59,9 @@ static bool mods_incompatible_match(struct Mod* a, struct Mod* b) {
|
|||
}
|
||||
}
|
||||
|
||||
free(ai);
|
||||
free(bi);
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -330,4 +333,4 @@ bool directory_sanity_check(struct dirent* dir, char* dirPath, char* outPath) {
|
|||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue