Skip to content
This repository was archived by the owner on Apr 23, 2020. It is now read-only.

Commit 6ac9939

Browse files
jasonmolendatromey
authored andcommitted
Set m_struct_valid to initial value in ctor.
Patch from Tom Tromey <[email protected]>. Differential Revision: https://reviews.llvm.org/D47481 git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@333690 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent e035466 commit 6ac9939

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/Expression/FunctionCaller.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ FunctionCaller::FunctionCaller(ExecutionContextScope &exe_scope,
4848
m_function_return_type(return_type),
4949
m_wrapper_function_name("__lldb_caller_function"),
5050
m_wrapper_struct_name("__lldb_caller_struct"), m_wrapper_args_addrs(),
51-
m_arg_values(arg_value_list), m_compiled(false), m_JITted(false) {
51+
m_struct_valid(false), m_arg_values(arg_value_list), m_compiled(false),
52+
m_JITted(false) {
5253
m_jit_process_wp = lldb::ProcessWP(exe_scope.CalculateProcess());
5354
// Can't make a FunctionCaller without a process.
5455
assert(m_jit_process_wp.lock());

0 commit comments

Comments
 (0)