Details
Details
- Reviewers
vitalybuka guiand - Commits
- rGaa57cabae2fc: [msan] Support %ms in scanf.
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
The problem with "a" is that we do not always know what it means exactly (could be a float), and it's dangerous to dereference the pointer.
compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_format.inc | ||
---|---|---|
346–349 | for consistency, we use real for similar stuff in other interceptors and without temp var |
compiler-rt/lib/sanitizer_common/sanitizer_common_interceptors_format.inc | ||
---|---|---|
346–349 | This file uses internal_strlen everywhere. I've got rid of the temp variable. |
for consistency, we use real for similar stuff in other interceptors and without temp var