summaryrefslogtreecommitdiff
path: root/lib/sanitizer_common/sanitizer_procmaps_linux.cc
diff options
context:
space:
mode:
authorAlexander Potapenko <glider@google.com>2015-12-04 17:50:03 +0000
committerAlexander Potapenko <glider@google.com>2015-12-04 17:50:03 +0000
commit0d7d0aedbc50b82096dcb074ce122e676e458c3a (patch)
treeaa8a957e793c3c9aa3913d62f8416b6e300c7f61 /lib/sanitizer_common/sanitizer_procmaps_linux.cc
parent0abce9c5933ac040bc1aefeb7d4df724cd7ac535 (diff)
[libsanitizer] Fix bugs and wiki links to point to GitHub.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@254738 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/sanitizer_common/sanitizer_procmaps_linux.cc')
-rw-r--r--lib/sanitizer_common/sanitizer_procmaps_linux.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sanitizer_common/sanitizer_procmaps_linux.cc b/lib/sanitizer_common/sanitizer_procmaps_linux.cc
index 0e97f9633..b6fb7034d 100644
--- a/lib/sanitizer_common/sanitizer_procmaps_linux.cc
+++ b/lib/sanitizer_common/sanitizer_procmaps_linux.cc
@@ -67,7 +67,7 @@ bool MemoryMappingLayout::Next(uptr *start, uptr *end, uptr *offset,
while (IsDecimal(*current_))
current_++;
// Qemu may lack the trailing space.
- // http://code.google.com/p/address-sanitizer/issues/detail?id=160
+ // https://github.com/google/sanitizers/issues/160
// CHECK_EQ(*current_++, ' ');
// Skip spaces.
while (current_ < next_line && *current_ == ' ')