Skip to content

Commit

Permalink
drouting: fix compiler warning may be used uninitialized in this func…
Browse files Browse the repository at this point in the history
…tion

(cherry picked from commit 37a3510)
  • Loading branch information
ovidiusas committed Mar 22, 2017
1 parent d3b74ae commit 24f30d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/drouting/drouting.c
Expand Up @@ -4776,7 +4776,7 @@ static int get_config_from_db(void) {
db_row_t *rows_db_config = NULL;
int j;
int i;
str ans_col;
str ans_col = {NULL, 0};


init_db_url(db_partitions_url, 0);
Expand Down

0 comments on commit 24f30d2

Please sign in to comment.