From 04c8ef07d96f37078cafceb91b83c6309d35a62d Mon Sep 17 00:00:00 2001
From: Lev Walkin <vlm@lionet.info>
Date: Mon, 17 Jan 2005 14:39:11 +0000
Subject: [PATCH] no lvalue casting

---
 libasn1compiler/asn1c_constraint.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/libasn1compiler/asn1c_constraint.c b/libasn1compiler/asn1c_constraint.c
index 47469511..40ee4cb6 100644
--- a/libasn1compiler/asn1c_constraint.c
+++ b/libasn1compiler/asn1c_constraint.c
@@ -523,7 +523,8 @@ emit_size_determination_code(arg_t *arg, asn1p_expr_type_e etype) {
 			INDENT(+1);
 			OUT("const A_%s_OF(void) *list;\n",
 				etype==ASN_CONSTR_SET_OF?"SET":"SEQUENCE");
-			OUT("(const void *)list = sptr;\n");
+			OUT("list = (const A_%s_OF(void) *)sptr;\n",
+				etype==ASN_CONSTR_SET_OF?"SET":"SEQUENCE");
 			OUT("size = list->count;\n");
 			INDENT(-1);
 		OUT("}\n");
-- 
GitLab