mie: ctx: fix mie_ctx_resolve_op not checking op-definition pointer properly

This commit is contained in:
2026-01-17 10:26:37 +00:00
parent 2869e98556
commit f19dfaa050

View File

@@ -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;
}