From: Jim Meyering Date: Sat, 4 Aug 2012 09:02:40 +0000 (+0200) Subject: truncate: don't leak a file descriptor with --ref=PIPE X-Git-Tag: v8.18~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cbd1cffa3eb9e6e5ca82ec67d3c4211a019dd1ed;p=thirdparty%2Fcoreutils.git truncate: don't leak a file descriptor with --ref=PIPE * src/truncate.c (main): For a user who makes the mistake of using a non-seekable file as a reference for the desired length, truncate would open that file, attempt to seek to its end, but upon seek failure would neglect to close the file descriptor. Close the file descriptor even when lseek fails. In addition, ignore failure to close that reference FD, since as long as the lseek succeeds, a close failure doesn't matter. Coverity spotted the potential FD leak. Improved-by: Pádraig Brady. --- diff --git a/src/truncate.c b/src/truncate.c index c1e9666174..d638993d6e 100644 --- a/src/truncate.c +++ b/src/truncate.c @@ -370,8 +370,15 @@ main (int argc, char **argv) if (0 <= ref_fd) { off_t file_end = lseek (ref_fd, 0, SEEK_END); - if (0 <= file_end && close (ref_fd) == 0) + int saved_errno = errno; + close (ref_fd); /* ignore failure */ + if (0 <= file_end) file_size = file_end; + else + { + /* restore, in case close clobbered it. */ + errno = saved_errno; + } } } if (file_size < 0)