Skip to content

Commit

Permalink
yanglint REFACTOR uninitialized value
Browse files Browse the repository at this point in the history
False positive.
  • Loading branch information
michalvasko committed Sep 5, 2024
1 parent 37b5658 commit 1cf9f98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/lint/completion.c
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ get_schema_completion(const char *hint, char ***matches, unsigned int *match_cou
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;

Expand Down

0 comments on commit 1cf9f98

Please sign in to comment.