summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2017-09-28 18:19:44 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2017-09-28 18:19:44 +0000
commit35bf445122908c454897722b57a81ba320ed915e (patch)
tree638bbaacd1b194fe7f9f81544266eef3717d12f4 /lib
parent81f388fe570e5b6460dd5bc9b9a36b72714eeb68 (diff)
[asan] Fix the bug number in the error message.
The link in the "Shadow memory range interleaves with an existing memory mapping" error message was pointing to the wrong bug. git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@314441 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/asan/asan_shadow_setup.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/asan/asan_shadow_setup.cc b/lib/asan/asan_shadow_setup.cc
index d65b27ee2..08c009184 100644
--- a/lib/asan/asan_shadow_setup.cc
+++ b/lib/asan/asan_shadow_setup.cc
@@ -85,7 +85,7 @@ static void MaybeReportLinuxPIEBug() {
#if SANITIZER_LINUX && (defined(__x86_64__) || defined(__aarch64__))
Report("This might be related to ELF_ET_DYN_BASE change in Linux 4.12.\n");
Report(
- "See https://github.com/google/sanitizers/issues/837 for possible "
+ "See https://github.com/google/sanitizers/issues/856 for possible "
"workarounds.\n");
#endif
}