forked from OSchip/llvm-project
Fix an uninitialized field in tsan_block_context_t/AllocContext in tsan_libdispatch_mac.cc.
llvm-svn: 298738
This commit is contained in:
parent
0607a4427b
commit
44df297598
|
@ -93,6 +93,7 @@ static tsan_block_context_t *AllocContext(ThreadState *thr, uptr pc,
|
|||
new_context->free_context_in_callback = true;
|
||||
new_context->submitted_synchronously = false;
|
||||
new_context->is_barrier_block = false;
|
||||
new_context->non_queue_sync_object = false;
|
||||
return new_context;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue