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 a58f20b commit ee870e5Copy full SHA for ee870e5
compiler-rt/lib/hwasan/hwasan.h
@@ -139,14 +139,14 @@ void hwasan_free(void *ptr, StackTrace *stack);
139
void InstallAtExitHandler();
140
141
#define GET_MALLOC_STACK_TRACE \
142
- BufferedStackTrace stack; \
+ UNINITIALIZED BufferedStackTrace stack; \
143
if (hwasan_inited) \
144
stack.Unwind(StackTrace::GetCurrentPc(), GET_CURRENT_FRAME(), \
145
nullptr, common_flags()->fast_unwind_on_malloc, \
146
common_flags()->malloc_context_size)
147
148
#define GET_FATAL_STACK_TRACE_PC_BP(pc, bp) \
149
150
151
stack.Unwind(pc, bp, nullptr, common_flags()->fast_unwind_on_fatal)
152
0 commit comments