mirror of
https://github.com/bellard/quickjs.git
synced 2024-11-22 13:48:11 +08:00
Nan bug fix
This commit is contained in:
parent
6e2e68fd08
commit
80f97204cb
13
quickjs.c
13
quickjs.c
@ -14097,23 +14097,28 @@ static no_inline int js_relational_slow(JSContext *ctx, JSValue *sp,
|
||||
} else {
|
||||
d2 = JS_VALUE_GET_INT(op2);
|
||||
}
|
||||
|
||||
if (isnan(d1) || isnan(d2)) {
|
||||
res = FALSE;
|
||||
} else {
|
||||
switch(op) {
|
||||
case OP_lt:
|
||||
res = (d1 < d2); /* if NaN return false */
|
||||
res = (d1 < d2);
|
||||
break;
|
||||
case OP_lte:
|
||||
res = (d1 <= d2); /* if NaN return false */
|
||||
res = (d1 <= d2);
|
||||
break;
|
||||
case OP_gt:
|
||||
res = (d1 > d2); /* if NaN return false */
|
||||
res = (d1 > d2);
|
||||
break;
|
||||
default:
|
||||
case OP_gte:
|
||||
res = (d1 >= d2); /* if NaN return false */
|
||||
res = (d1 >= d2);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
done:
|
||||
sp[-2] = JS_NewBool(ctx, res);
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user