Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [dsymutil] Rename llvm-dsymutil -> dsymutil | Jonas Devlieghere | 2018-03-18 | 1 | -1/+1 |
| | | | | | | | | | | | Now that almost all functionality of Apple's dsymutil has been upstreamed, the open source variant can be used as a drop in replacement. Hence we feel it's no longer necessary to have the llvm prefix. Differential revision: https://reviews.llvm.org/D44527 llvm-svn: 327790 | ||||
* | [dsymutil] Prevent use-after-free | Frederic Riss | 2016-05-09 | 1 | -0/+10 |
The BinaryHolder would query the archive member MemoryBuffer name to check if the current open archive also contains the next requested objectfile. This comparison was using a StringRef to a temporary buffer. It only happened with fat archives. This commit adds long-lived storage along with the MemoryBuffers for the fat archive filename. The added test would fail during an ASAN build without the fix. llvm-svn: 268924 |