Skip to content

Commit

Permalink
sql_cacher: fix compiler warning may be used uninitialized in this fu…
Browse files Browse the repository at this point in the history
…nction

(cherry picked from commit dd70215)
  • Loading branch information
ovidiusas committed Mar 22, 2017
1 parent 6bb48d0 commit 7ab853f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/sql_cacher/sql_cacher.c
Expand Up @@ -474,7 +474,7 @@ static int insert_in_cachedb(cache_entry_t *c_entry, db_handlers_t *db_hdls, db_
char *int_key_buf = NULL;
str str_val;
db_type_t val_type;
str str_key;
str str_key = {NULL, 0};
str cdb_val;
str cdb_key;

Expand Down

0 comments on commit 7ab853f

Please sign in to comment.