From: Michael J. Spencer Date: Mon, 17 Jan 2011 15:53:12 +0000 (+0000) Subject: Support/raw_ostream: Fix uninitalized variable in raw_fd_ostream constructor. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=2634a5425c29eca79f2cc2e309274d365697d0a7;p=oota-llvm.git Support/raw_ostream: Fix uninitalized variable in raw_fd_ostream constructor. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@123643 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/raw_ostream.cpp b/lib/Support/raw_ostream.cpp index 0279f40caba..e7d75e71286 100644 --- a/lib/Support/raw_ostream.cpp +++ b/lib/Support/raw_ostream.cpp @@ -433,6 +433,13 @@ raw_fd_ostream::raw_fd_ostream(int fd, bool shouldClose, bool unbuffered) if (fd == STDOUT_FILENO || fd == STDERR_FILENO) setmode(fd, O_BINARY); #endif + + // Get the starting position. + off_t loc = ::lseek(FD, 0, SEEK_CUR); + if (loc == (off_t)-1) + pos = 0; + else + pos = static_cast(loc); } raw_fd_ostream::~raw_fd_ostream() {