commit | ed4fcfe3c94e228ae7440dbcaaef5b1c21115b28 | [log] [tgz] |
---|---|---|
author | Michal Vasko <mvasko@cesnet.cz> | Wed Jul 08 10:38:56 2020 +0200 |
committer | Michal Vasko <mvasko@cesnet.cz> | Wed Jul 08 10:38:56 2020 +0200 |
tree | 34809488bb39bac7dc5c7c35e4aa89781d36fbbe | |
parent | 63f3d84fda0762299b369b18eae474d2b1046da5 [diff] [blame] |
libyang MAINTENANCE fox uninitialized vars warnings Even though they all are false-positives.
diff --git a/src/context.c b/src/context.c index d5bc77c..f4301c2 100644 --- a/src/context.c +++ b/src/context.c
@@ -648,7 +648,7 @@ int bis = 0, ret; char id[8], *str; const struct lys_module *mod; - struct lyd_node *root = NULL, *root_bis = NULL, *cont, *set_bis, *node; + struct lyd_node *root = NULL, *root_bis = NULL, *cont, *set_bis = NULL, *node; LY_CHECK_ARG_RET(ctx, ctx, NULL);