Fix generation of empty completion value in ecma_reject_put.

Related issue: #114

JerryScript-DCO-1.0-Signed-off-by: Evgeny Gavrin e.gavrin@samsung.com
This commit is contained in:
Evgeny Gavrin
2015-07-01 17:20:23 +03:00
parent 69fe6199c0
commit 0787d76b62
2 changed files with 18 additions and 1 deletions
@@ -226,7 +226,7 @@ ecma_reject_put (bool is_throw) /**< Throw flag */
}
else
{
return ecma_make_simple_completion_value (ECMA_SIMPLE_VALUE_EMPTY);
return ecma_make_empty_completion_value ();
}
} /* ecma_reject_put */