File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed
Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -261,8 +261,9 @@ static void ReExecIfNeeded(bool ignore_heap) {
261261 " Re-execing with fixed virtual address space.\n " );
262262
263263 if (personality (old_personality | ADDR_NO_RANDOMIZE) == -1 ) {
264- Printf (" FATAL: ThreadSanitizer: unable to disable ASLR (perhaps "
265- " sandboxing is enabled?).\n " );
264+ Printf (
265+ " FATAL: ThreadSanitizer: unable to disable ASLR (perhaps "
266+ " sandboxing is enabled?).\n " );
266267 Printf (" FATAL: Please rerun without sandboxing and/or ASLR.\n " );
267268 Die ();
268269 }
@@ -296,11 +297,13 @@ static void ReExecIfNeeded(bool ignore_heap) {
296297 " N.B. reducing ASLR entropy is preferable.\n " );
297298
298299 if (personality (old_personality | ADDR_NO_RANDOMIZE) == -1 ) {
299- Printf (" FATAL: ThreadSanitizer: encountered an incompatible memory "
300- " but was unable to disable ASLR (perhaps sandboxing is "
301- " enabled?).\n " );
302- Printf (" FATAL: Please rerun with lower ASLR entropy, ASLR disabled, "
303- " and/or sandboxing disabled.\n " );
300+ Printf (
301+ " FATAL: ThreadSanitizer: encountered an incompatible memory "
302+ " but was unable to disable ASLR (perhaps sandboxing is "
303+ " enabled?).\n " );
304+ Printf (
305+ " FATAL: Please rerun with lower ASLR entropy, ASLR disabled, "
306+ " and/or sandboxing disabled.\n " );
304307 Die ();
305308 }
306309
You can’t perform that action at this time.
0 commit comments