Fix invalid delete in IndexerExpression::GetReference

fixes #10466
This commit is contained in:
Gunnar Beutner 2015-10-26 18:00:42 +01:00
parent 0efab37e72
commit 23330150f4
1 changed files with 6 additions and 2 deletions

View File

@ -640,8 +640,12 @@ bool IndexerExpression::GetReference(ScriptFrame& frame, bool init_dict, Value *
ExpressionResult operand2 = m_Operand2->Evaluate(frame);
*index = operand2.GetValue();
if (dhint && psdhint)
*dhint = new DebugHint(psdhint->GetChild(*index));
if (dhint) {
if (psdhint)
*dhint = new DebugHint(psdhint->GetChild(*index));
else
*dhint = NULL;
}
if (free_psd)
delete psdhint;