commit | 1cf9f985edeca093205036eaf6630b30330cdd97 | [log] [tgz] |
---|---|---|
author | Michal Vasko <mvasko@cesnet.cz> | Thu Sep 05 13:27:52 2024 +0200 |
committer | Michal Vasko <mvasko@cesnet.cz> | Thu Sep 05 13:27:52 2024 +0200 |
tree | bba7004fe2fba2c1db0b98f4fc111c989e0f8662 | |
parent | 37b565854b4c6a4e475bce2d7002d88327ff725d [diff] |
yanglint REFACTOR uninitialized value False positive.
diff --git a/tools/lint/completion.c b/tools/lint/completion.c index 59207ca..3c7503e 100644 --- a/tools/lint/completion.c +++ b/tools/lint/completion.c
@@ -224,7 +224,7 @@ uint32_t idx; const char *start; char *end, *module_name = NULL, *path = NULL; - const struct lysc_node *parent, *last_node; + const struct lysc_node *parent, *last_node = NULL; int rc = 0; size_t len;