Fix codegen hidden bugs

This commit is contained in:
Abdelrahman Said
2025-04-16 08:06:05 +01:00
parent 0942643b4e
commit cfa8094260
9 changed files with 26 additions and 32 deletions

View File

@@ -1,4 +1,4 @@
if (!list || !node || !(node->string)) {{
if (!list || !node || !(node->item)) {{
return;
}}
@@ -9,7 +9,6 @@
return;
}}
list->total_size += node_list.total_size;
list->node_count += node_list.node_count;
{T}Node *first = list->first;