diff options
author | des <des@FreeBSD.org> | 2003-05-26 12:12:45 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2003-05-26 12:12:45 +0000 |
commit | b236dd249aa3ac4952cda1c0f65ca3e34ab36ea2 (patch) | |
tree | 1fd2a28c408e18a46398df7057e239ff39a89fc0 /tools | |
parent | 8b2214412defc39a4c9f54ca66adaf3a853e825a (diff) | |
download | FreeBSD-src-b236dd249aa3ac4952cda1c0f65ca3e34ab36ea2.zip FreeBSD-src-b236dd249aa3ac4952cda1c0f65ca3e34ab36ea2.tar.gz |
Remember to close the read end of the pipe.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/tools/tinderbox/tbmaster.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/tools/tinderbox/tbmaster.pl b/tools/tools/tinderbox/tbmaster.pl index 542bcb2..351d40e 100644 --- a/tools/tools/tinderbox/tbmaster.pl +++ b/tools/tools/tinderbox/tbmaster.pl @@ -248,6 +248,7 @@ sub tinderbox($$$) { } push(@lines, $_); } + close(RPIPE); if ($error) { $summary .= join('', @lines); print(BRIEF join('', @lines)); |