Skip to content

Instantly share code, notes, and snippets.

@jerstlouis
Last active October 8, 2016 22:33
Show Gist options
  • Save jerstlouis/8af947a2c14311101d64bd4b630cb353 to your computer and use it in GitHub Desktop.
Save jerstlouis/8af947a2c14311101d64bd4b630cb353 to your computer and use it in GitHub Desktop.
E:\ecere-sdk\ecere\src\sys>git diff DualPipe.c
diff --git a/ecere/src/sys/DualPipe.c b/ecere/src/sys/DualPipe.c
index c9eba7c..5029262 100644
--- a/ecere/src/sys/DualPipe.c
+++ b/ecere/src/sys/DualPipe.c
@@ -74,6 +74,12 @@ void DualPipe_Destructor(_DualPipe * dp)
}
if(dp->hProcess)
CloseHandle(dp->hProcess);
+#else
+ if(!dp->gotExitCode)
+ {
+ int status = 0;
+ waitpid(dp->pid, &status, WNOHANG);
+ }
#endif
free(dp);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment