Merge pull request #38 from krmeet/mod-compatibility

Fix mod compatibility check (2)
This commit is contained in:
Agent X 2023-12-27 17:54:24 -05:00 committed by GitHub
commit 56aa303d1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -44,8 +44,8 @@ static bool mods_incompatible_match(struct Mod* a, struct Mod* b) {
return false; return false;
} }
char* ai = a->incompatible; char* ai = strdup(a->incompatible);
char* bi = b->incompatible; char* bi = strdup(b->incompatible);
char* atoken = NULL; char* atoken = NULL;
char* btoken = NULL; char* btoken = NULL;
char* arest = 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; return false;
} }