forked from OSchip/llvm-project
[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:
parent
1f0fe88a1b
commit
a41b578635
|
|
@ -85,7 +85,7 @@ static void MaybeReportLinuxPIEBug() {
|
||||||
#if SANITIZER_LINUX && (defined(__x86_64__) || defined(__aarch64__))
|
#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("This might be related to ELF_ET_DYN_BASE change in Linux 4.12.\n");
|
||||||
Report(
|
Report(
|
||||||
"See https://github.com/google/sanitizers/issues/837 for possible "
|
"See https://github.com/google/sanitizers/issues/856 for possible "
|
||||||
"workarounds.\n");
|
"workarounds.\n");
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue