Skip to content
Snippets Groups Projects
Unverified Commit affa7872 authored by Clancy Walters's avatar Clancy Walters Committed by GitHub
Browse files

Prefer Exit() over OnExit() (#847)

This is a no-op patch, but prefered, because this centralize the exit path below `Exit()`.
parent 014bdb4a
No related branches found
No related tags found
No related merge requests found
...@@ -907,7 +907,7 @@ void ScreenInteractive::ExitNow() { ...@@ -907,7 +907,7 @@ void ScreenInteractive::ExitNow() {
// private: // private:
void ScreenInteractive::Signal(int signal) { void ScreenInteractive::Signal(int signal) {
if (signal == SIGABRT) { if (signal == SIGABRT) {
OnExit(); Exit();
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment