mirror of https://github.com/mgba-emu/mgba.git
CInema: Fix glob anchoring
This commit is contained in:
parent
2e6f8b4af9
commit
f853de37b9
|
@ -415,7 +415,7 @@ static bool globTests(struct CInemaTestList* tests, const char* glob, const char
|
||||||
} else if (next[0] == '.') {
|
} else if (next[0] == '.') {
|
||||||
char subtest[MAX_TEST];
|
char subtest[MAX_TEST];
|
||||||
if (!ancestors) {
|
if (!ancestors) {
|
||||||
strncpy(subtest, glob, next - glob);
|
strlcpy(subtest, glob, next - glob + 1);
|
||||||
} else {
|
} else {
|
||||||
size_t len = strlen(ancestors) + (next - glob) + 2;
|
size_t len = strlen(ancestors) + (next - glob) + 2;
|
||||||
if (len > sizeof(subtest)) {
|
if (len > sizeof(subtest)) {
|
||||||
|
|
Loading…
Reference in New Issue