From: Dmitry Volyntsev Date: Tue, 28 Feb 2023 07:55:55 +0000 (-0800) Subject: WebCrypto: fixed compilation with --debug=YES. X-Git-Tag: 0.7.11~12 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=4907379ca3bfcfd524e816f47a21ac87410ab707;p=njs.git WebCrypto: fixed compilation with --debug=YES. The issue was introduced in 2e3bbe8743af (0.7.10). --- diff --git a/external/njs_webcrypto_module.c b/external/njs_webcrypto_module.c index 3490c617..cb633d93 100644 --- a/external/njs_webcrypto_module.c +++ b/external/njs_webcrypto_module.c @@ -2076,7 +2076,7 @@ njs_export_jwk_oct(njs_vm_t *vm, njs_webcrypto_key_t *key, njs_value_t *retval) static const njs_value_t oct_str = njs_string("oct"); - njs_assert(key->raw.start != NULL) + njs_assert(key->raw.start != NULL); ret = njs_string_base64url(vm, &k, &key->raw); if (njs_slow_path(ret != NJS_OK)) {