summaryrefslogtreecommitdiffstats
path: root/cli/src/cli.c
diff options
context:
space:
mode:
Diffstat (limited to 'cli/src/cli.c')
-rw-r--r--cli/src/cli.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/cli/src/cli.c b/cli/src/cli.c
index fa3c747d154..992f6a54321 100644
--- a/cli/src/cli.c
+++ b/cli/src/cli.c
@@ -553,7 +553,10 @@ cli_quotad_clnt_rpc_init (void)
global_quotad_rpc = rpc;
out:
- dict_unref (rpc_opts);
+ if (ret) {
+ if (rpc_opts)
+ dict_destroy(rpc_opts);
+ }
return rpc;
}