From: Fabrice Bellard Date: Sat, 13 Jun 2026 15:54:54 +0000 (+0200) Subject: fixed typo in commit 445624b X-Git-Url: http://git.kaiwu.me/postgresql/log/contrib/postgres_fdw//%22?a=commitdiff_plain;h=762e6fce20e12af5cacd418e621f26a87f5e96ad;p=quickjs.git fixed typo in commit 445624b --- diff --git a/quickjs.c b/quickjs.c index ed13bf7..a8fb103 100644 --- a/quickjs.c +++ b/quickjs.c @@ -20388,7 +20388,7 @@ static JSValue JS_CallInternal(JSContext *caller_ctx, JSValueConst func_obj, } \ JS_FreeValue(ctx, op1); \ JS_FreeValue(ctx, op2); \ - } else if (tag1 == JS_TAG_NULL || tag2 == JS_TAG_UNDEFINED) { \ + } else if (tag1 == JS_TAG_NULL || tag1 == JS_TAG_UNDEFINED) { \ res = (tag1 == tag2); \ JS_FreeValue(ctx, op2); \ } else if (tag1 == JS_TAG_STRING && tag2 == JS_TAG_STRING) { \