Skip to content

Commit

Permalink
doveadm-dict: Initialize set variable in cmd_dict_init
Browse files Browse the repository at this point in the history
Makes valgrind happy with clang's optimizations
  • Loading branch information
cmouse committed Aug 7, 2018
1 parent 1b34e02 commit 944e0e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doveadm/doveadm-dict.c
Expand Up @@ -15,7 +15,7 @@ cmd_dict_init_full(struct doveadm_cmd_context *cctx,
{
struct dict_settings dict_set;
struct dict *dict;
bool set;
bool set = FALSE;
const char *dict_uri, *error, *key, *username = "";

if (doveadm_cmd_param_bool(cctx, "exact", &set) && set)
Expand Down

0 comments on commit 944e0e8

Please sign in to comment.