Skip to content

Commit

Permalink
Segfault fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ZILtoid1991 committed Feb 12, 2024
1 parent e70b45b commit a9a321d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test1/app.d
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ public class AudioDevKit : InputListener, SystemEventListener {
ih.test();
timer.test();
}
version (linux) midiIn.stop();
version (linux) if (midiIn !is null) midiIn.stop();
if (mm !is null) {
synchronized
writeln(mm.suspendAudioThread());
Expand Down

0 comments on commit a9a321d

Please sign in to comment.