forked from OSchip/llvm-project
Fix an unitialized pointer in ValueObject::CreateChildAtIndex.
llvm-svn: 131039
This commit is contained in:
parent
32103ac2a9
commit
2eec4876a2
|
@ -389,7 +389,7 @@ ValueObject::SetName (const ConstString &name)
|
|||
ValueObject *
|
||||
ValueObject::CreateChildAtIndex (uint32_t idx, bool synthetic_array_member, int32_t synthetic_index)
|
||||
{
|
||||
ValueObject *valobj;
|
||||
ValueObject *valobj = NULL;
|
||||
|
||||
if (UpdateValueIfNeeded())
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue