commit | 5940c30d00d7918b87c99735aa77f276852d389a | [log] [tgz] |
---|---|---|
author | Michal Vasko <mvasko@cesnet.cz> | Thu Jul 14 13:54:38 2022 +0200 |
committer | Michal Vasko <mvasko@cesnet.cz> | Thu Jul 14 13:54:38 2022 +0200 |
tree | 76a4b2c6b352f7e6070061de9c9e4c8039f99521 | |
parent | 7c3134db21e82dfde44fd60605a7c3cff9b89327 [diff] |
schema compile BUGFIX process only new children
diff --git a/src/schema_compile_node.c b/src/schema_compile_node.c index 30671d1..55feef7 100644 --- a/src/schema_compile_node.c +++ b/src/schema_compile_node.c
@@ -3755,7 +3755,7 @@ assert(child_set); - child_i = 0; + child_i = child_set->count; LY_LIST_FOR(child, pnode) { /* compile the nodes with their parsed (grouping) module */ ctx->pmod = grp_mod;