summaryrefslogtreecommitdiff
path: root/runner/executor.c
diff options
context:
space:
mode:
Diffstat (limited to 'runner/executor.c')
-rw-r--r--runner/executor.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/runner/executor.c b/runner/executor.c
index fd262eb4..d0539aa1 100644
--- a/runner/executor.c
+++ b/runner/executor.c
@@ -249,15 +249,19 @@ static void dump_dmesg(int kmsgfd, int outfd)
return;
lseek(comparefd, 0, SEEK_END);
- if (fcntl(kmsgfd, F_SETFL, O_NONBLOCK))
+ if (fcntl(kmsgfd, F_SETFL, O_NONBLOCK)) {
+ close(comparefd);
return;
+ }
while (1) {
if (comparefd >= 0) {
r = read(comparefd, buf, sizeof(buf) - 1);
if (r < 0) {
- if (errno != EAGAIN && errno != EPIPE)
+ if (errno != EAGAIN && errno != EPIPE) {
+ close(comparefd);
return;
+ }
} else {
buf[r] = '\0';
if (sscanf(buf, "%u,%llu,%llu,%c;",
@@ -278,6 +282,7 @@ static void dump_dmesg(int kmsgfd, int outfd)
* If EAGAIN, we're done. If some other error,
* we can't do anything anyway.
*/
+ close(comparefd);
return;
}