From e5b0bb1a0d1b7ce70bfbd943481ebf095d6a35f5 Mon Sep 17 00:00:00 2001 From: Ruben Ayrapetyan Date: Wed, 15 Oct 2014 16:49:21 +0400 Subject: [PATCH] Fixing ecma_op_abstract_equality_compare. --- src/libecmaoperations/ecma-comparison.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libecmaoperations/ecma-comparison.c b/src/libecmaoperations/ecma-comparison.c index 123cb810c..17f77ef24 100644 --- a/src/libecmaoperations/ecma-comparison.c +++ b/src/libecmaoperations/ecma-comparison.c @@ -179,7 +179,7 @@ ecma_op_abstract_equality_compare (ecma_value_t x, /**< first operand */ } else { - ret_value = ecma_make_simple_completion_value (ECMA_SIMPLE_VALUE_TRUE); + ret_value = ecma_make_simple_completion_value (ECMA_SIMPLE_VALUE_FALSE); } return ret_value;