diff options
| -rw-r--r-- | compiler-rt/lib/sanitizer_common/sanitizer_posix.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc b/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc index 91e7f0fb087..bf7127443c4 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_posix.cc @@ -367,8 +367,7 @@ int GetNamedMappingFd(const char *name, uptr size, int *flags) { void DecorateMapping(uptr addr, uptr size, const char *name) { if (!common_flags()->decorate_proc_maps || !name) return; - CHECK(internal_prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, addr, size, - (uptr)name) == 0); + internal_prctl(PR_SET_VMA, PR_SET_VMA_ANON_NAME, addr, size, (uptr)name); } #else void DecorateMapping(uptr addr, uptr size, const char *name) { |

