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 9fcf8c6 commit 5653b30Copy full SHA for 5653b30
source/loader/layers/sanitizer/asan_report.cpp
@@ -83,8 +83,9 @@ void ReportMemoryLeak(const std::shared_ptr<AllocInfo> &AI) {
83
getContext()->logger.always(
84
"\n====ERROR: DeviceSanitizer: detected memory leaks of {}",
85
ToString(AI->Type));
86
- getContext()->logger.always("Direct leak of {} byte(s) at {} allocated from:",
87
- AI->UserEnd - AI->UserBegin, (void *)AI->UserBegin);
+ getContext()->logger.always(
+ "Direct leak of {} byte(s) at {} allocated from:",
88
+ AI->UserEnd - AI->UserBegin, (void *)AI->UserBegin);
89
AI->AllocStack.print();
90
}
91
0 commit comments