Last active
October 8, 2016 22:33
-
-
Save jerstlouis/8af947a2c14311101d64bd4b630cb353 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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