[PATCH] D39260: [asan] Don't print rows of shadow bytes outside shadow memory
Reid Kleckner via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 24 15:26:52 PDT 2017
rnk added inline comments.
================
Comment at: compiler-rt/lib/asan/asan_errors.cc:429
+ // space.
+ if (!AddrIsInShadow(row_shadow_addr)) continue;
const char *prefix = (i == 0) ? "=>" : " ";
----------------
vitalybuka wrote:
> What do users see now, without your patch?
A crash, the shadow below is unmapped.
https://reviews.llvm.org/D39260
More information about the llvm-commits
mailing list