New upstream version 4.7

This commit is contained in:
Balint Reczey
2019-06-23 22:06:37 +02:00
parent b0729855e8
commit b28d45d2bd
10587 changed files with 152812 additions and 381179 deletions
+3 -1
View File
@@ -68,8 +68,10 @@ int run_command (const char *cmd, const char *argv[],
do {
wpid = waitpid (pid, status, 0);
if ((pid_t)-1 == wpid && errno == ECHILD)
break;
} while ( ((pid_t)-1 == wpid && errno == EINTR)
|| (wpid != pid));
|| ((pid_t)-1 != wpid && wpid != pid));
if ((pid_t)-1 == wpid) {
fprintf (stderr, "%s: waitpid (status: %d): %s\n",