From bb93b119ea3fe328a32c1695821bb3db105a3338 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20B=C3=A1rta?= Date: Wed, 22 Oct 2025 13:08:35 +0200 Subject: [PATCH] fix: make sure sim variant does not return size 0 from context_v1_size() --- src/lib/uta_sim.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/uta_sim.c b/src/lib/uta_sim.c index 80bb1ac..78155e7 100644 --- a/src/lib/uta_sim.c +++ b/src/lib/uta_sim.c @@ -33,7 +33,8 @@ ******************************************************************************/ struct _uta_context_v1_t { - + /* dummy added so that the struct does not have size 0 */ + int dummy; }; /*******************************************************************************