mirror of https://github.com/mgba-emu/mgba.git
Test: Fix crash when loading invalid file
This commit is contained in:
parent
6fb7c0780a
commit
93122df1f4
1
CHANGES
1
CHANGES
|
@ -45,6 +45,7 @@ Bugfixes:
|
||||||
- GBA Video: Don't update background scanline params in mode 0 (fixes mgba.io/i/377)
|
- GBA Video: Don't update background scanline params in mode 0 (fixes mgba.io/i/377)
|
||||||
- Qt: Ensure CLI backend is attached when submitting commands (fixes mgba.io/i/662)
|
- Qt: Ensure CLI backend is attached when submitting commands (fixes mgba.io/i/662)
|
||||||
- Core: Fix crash with rewind if savestates shrink
|
- Core: Fix crash with rewind if savestates shrink
|
||||||
|
- Test: Fix crash when loading invalid file
|
||||||
Misc:
|
Misc:
|
||||||
- SDL: Remove scancode key input
|
- SDL: Remove scancode key input
|
||||||
- GBA Video: Clean up unused timers
|
- GBA Video: Clean up unused timers
|
||||||
|
|
|
@ -68,6 +68,9 @@ int main(int argc, char** argv) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
struct mCore* core = mCoreFind(args.fname);
|
struct mCore* core = mCoreFind(args.fname);
|
||||||
|
if (!core) {
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
core->init(core);
|
core->init(core);
|
||||||
mCoreInitConfig(core, "fuzz");
|
mCoreInitConfig(core, "fuzz");
|
||||||
applyArguments(&args, NULL, &core->config);
|
applyArguments(&args, NULL, &core->config);
|
||||||
|
|
Loading…
Reference in New Issue