[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.

llvm-svn: 314441
This commit is contained in:
Evgeniy Stepanov 2017-09-28 18:19:44 +00:00
parent 1f0fe88a1b
commit a41b578635
1 changed files with 1 additions and 1 deletions

View File

@ -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
}