From f19dfaa05031f37d362716b98ba1e4e79c8be39c Mon Sep 17 00:00:00 2001 From: Max Wash Date: Sat, 17 Jan 2026 10:26:37 +0000 Subject: [PATCH] mie: ctx: fix mie_ctx_resolve_op not checking op-definition pointer properly --- mie/ctx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mie/ctx.c b/mie/ctx.c index 2b489e8..df6a5e7 100644 --- a/mie/ctx.c +++ b/mie/ctx.c @@ -95,7 +95,7 @@ bool mie_ctx_resolve_op(const struct mie_ctx *ctx, struct mie_op *op) const struct mie_op_definition *op_info = mie_dialect_get_op(dialect, op_name); - if (!op) { + if (!op_info) { return false; }