Skip to content

Commit 702c38e

Browse files
committed
[asan] Fix-forward #131975 by renaming 'TryReExecWithoutASLR'
Function definition added in #131975 was missing 'Try' (do or do not ...). My guess is buildbots mostly didn't trip because usage was gated by 'if (sizeof(uptr) == 32)', which is rare among buildbots.
1 parent 7e6d008 commit 702c38e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/asan/asan_linux.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ void FlushUnneededASanShadowMemory(uptr p, uptr size) {
111111
ReleaseMemoryPagesToOS(MemToShadow(p), MemToShadow(p + size));
112112
}
113113

114-
void ReExecWithoutASLR() {
114+
void TryReExecWithoutASLR() {
115115
# if SANITIZER_LINUX
116116
// ASLR personality check.
117117
// Caution: 'personality' is sometimes forbidden by sandboxes, so only call

0 commit comments

Comments
 (0)