We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99c8557 commit 453d373Copy full SHA for 453d373
compiler-rt/lib/lsan/lsan_common.cpp
@@ -780,10 +780,10 @@ static bool PrintResults(LeakReport &report) {
780
781
static bool CheckForLeaks() {
782
if (&__lsan_is_turned_off && __lsan_is_turned_off()) {
783
- VReport(1, "LeakSanitizer is disabled");
+ VReport(1, "LeakSanitizer is disabled\n");
784
return false;
785
}
786
- VReport(1, "LeakSanitizer: checking for leaks");
+ VReport(1, "LeakSanitizer: checking for leaks\n");
787
// Inside LockStuffAndStopTheWorld we can't run symbolizer, so we can't match
788
// suppressions. However if a stack id was previously suppressed, it should be
789
// suppressed in future checks as well.
0 commit comments