Commit 199276f722e2a35a09787e73b4a5ded2797faabf

Thomas de Grivel 2024-08-16T11:59:14

wip asan

1
2
3
4
5
6
7
8
9
10
11
12
13
14
diff --git a/libkc3/buf_parse.c b/libkc3/buf_parse.c
index bbd316e..e1f14a0 100644
--- a/libkc3/buf_parse.c
+++ b/libkc3/buf_parse.c
@@ -754,7 +754,8 @@ sw buf_parse_call_access (s_buf *buf, s_call *dest)
     if (r == 0)
       break;
   }
-  tag_init_list(&list_next(tmp.arguments)->tag, key);
+  list_next(tmp.arguments)->tag.type = TAG_LIST;
+  list_next(tmp.arguments)->tag.data.list = key;
   *dest = tmp;
   r = result;
   goto clean;