Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions src/alice/exe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,13 @@ int EXE_action(const TEXT* database, const SINT64 switches)
}
}

// It takes longer to print errors, so don't call the started() method and just return
if (error)
return FINI_ERROR;

tdgbl->uSvc->started();

return error ? FINI_ERROR : FINI_OK;
return FINI_OK;
}


Expand Down Expand Up @@ -186,9 +190,12 @@ int EXE_two_phase(const TEXT* database, const SINT64 switches)
}
}

if (error)
return FINI_ERROR;

tdgbl->uSvc->started();

return (error ? FINI_ERROR : FINI_OK);
return FINI_OK;
}

//____________________________________________________________
Expand Down
Loading