Fix an unitialized pointer in ValueObject::CreateChildAtIndex.

llvm-svn: 131039
This commit is contained in:
Jim Ingham 2011-05-07 00:10:58 +00:00
parent 32103ac2a9
commit 2eec4876a2
1 changed files with 1 additions and 1 deletions

View File

@ -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())
{