Merge remote-tracking branch 'eraserhd/notify_fatal_error-undefined-behavior'

This commit is contained in:
Maxime Coste 2018-10-06 10:23:10 +10:00
commit 98da5dd13a

View File

@ -34,6 +34,8 @@ bool notify_fatal_error(StringView msg)
auto cmd = format("xmessage -buttons 'quit:0,ignore:1' '{}'", msg);
int status = system(cmd.c_str());
return (WIFEXITED(status)) ? (WEXITSTATUS(status)) == 1 : false;
#else
return false;
#endif
}