Skip to content

(fix) fflush(0) before exiting cleanly #77

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions src/cli/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,8 @@ int main(int argc, const char* argv[])
if (result == WREN_RESULT_COMPILE_ERROR) return 65; // EX_DATAERR.
if (result == WREN_RESULT_RUNTIME_ERROR) return 70; // EX_SOFTWARE.

// flush all pipes before exiting
if (fflush(0)) { (void) fputs("Write error!\n", stderr); setExitCode(EXIT_FAILURE); }

return getExitCode();
}
2 changes: 1 addition & 1 deletion src/cli/vm.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ static char* rootDirectory = NULL;
static Path* wrenModulesDirectory = NULL;

// The exit code to use unless some other error overrides it.
int defaultExitCode = 0;
int defaultExitCode = EXIT_SUCCESS;

// Reads the contents of the file at [path] and returns it as a heap allocated
// string.
Expand Down