Length of xml vector in many structs changed from to since it is a vector size, not byte size. This includes transaction_data_t

This commit is contained in:
Olof hagsand 2020-04-21 10:16:55 +02:00
parent 5be5b02a84
commit 04017c97ba
23 changed files with 57 additions and 54 deletions

View file

@ -54,7 +54,7 @@ struct clixon_xml_parse_yacc {
yang_stmt *xy_yspec; /* If set, top-level yang-spec */
int xy_lex_state; /* lex return state */
cxobj **xy_xvec; /* Vector of created top-level nodes (to know which are created) */
size_t xy_xlen; /* Length of xy_xvec */
int xy_xlen; /* Length of xy_xvec */
};
typedef struct clixon_xml_parse_yacc clixon_xml_yacc;