summaryrefslogtreecommitdiffhomepage
path: root/types.c
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2022-01-26 10:21:27 +0100
committerJo-Philipp Wich <jo@mein.io>2022-01-26 10:47:56 +0100
commitaa860a35252b4833a188f8b2f9c6a7d68963767d (patch)
treeaa3db18152d21c5bca2fae9e0b1b32540e692d0f /types.c
parent6a55d10664840d794f364d2b97b6bca3bf800850 (diff)
vm: fix `null` loose equality/inequality checks
The current implementation incorrectly yielded `true` for `0 == null` but only `null` must be equal to `null`. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'types.c')
-rw-r--r--types.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/types.c b/types.c
index 68eba42..5ea1180 100644
--- a/types.c
+++ b/types.c
@@ -1918,8 +1918,13 @@ ucv_compare(int how, uc_value_t *v1, uc_value_t *v2, int *deltap)
double d1, d2;
int8_t delta;
- /* if both operands are strings, compare bytewise */
- if (t1 == UC_STRING && t2 == UC_STRING) {
+ /* at least one operand is null and we compare for equality or inequality ... */
+ if ((!v1 || !v2) && (how == I_EQ || how == I_NE)) {
+ delta = (v1 != v2);
+ }
+
+ /* ... otherwise if both operands are strings, compare bytewise ... */
+ else if (t1 == UC_STRING && t2 == UC_STRING) {
delta = strcmp(ucv_string_get(v1), ucv_string_get(v2));
}