aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/DebugInfo/CodeView/SymbolSerializer.cpp
diff options
context:
space:
mode:
authorRafael Espindola <rafael.espindola@gmail.com>2017-03-13 14:45:06 +0000
committerRafael Espindola <rafael.espindola@gmail.com>2017-03-13 14:45:06 +0000
commit82d55239eae14af084fb35f7692d463b5834fb6d (patch)
treef2b3f77113accdc110c1d78038896f888f09423f /llvm/lib/DebugInfo/CodeView/SymbolSerializer.cpp
parent7d21a3d2c3ffc24c68eed2d3f3e1843d1bb66a7d (diff)
downloadllvm-82d55239eae14af084fb35f7692d463b5834fb6d.zip
llvm-82d55239eae14af084fb35f7692d463b5834fb6d.tar.gz
llvm-82d55239eae14af084fb35f7692d463b5834fb6d.tar.bz2
Fix crash when multiple raw_fd_ostreams to stdout are created.
If raw_fd_ostream is constructed with the path of "-", it claims ownership of the stdout file descriptor. This means that it closes stdout when it is destroyed. If there are multiple users of raw_fd_ostream wrapped around stdout, then a crash can occur because of operations on a closed stream. An example of this would be running something like "clang -S -o - -MD -MF - test.cpp". Alternatively, using outs() (which creates a local version of raw_fd_stream to stdout) anywhere combined with such a stream usage would cause the crash. The fix duplicates the stdout file descriptor when used within raw_fd_ostream, so that only that particular descriptor is closed when the stream is destroyed. Patch by James Henderson! llvm-svn: 297624
Diffstat (limited to 'llvm/lib/DebugInfo/CodeView/SymbolSerializer.cpp')
0 files changed, 0 insertions, 0 deletions