summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetr Rockai <prockai@redhat.com>2014-11-27 20:19:28 +0100
committerPetr Rockai <prockai@redhat.com>2014-11-27 20:19:28 +0100
commit92908541638b41215d48e51d6fa4aa63b82d8c1a (patch)
tree4e87b9791f699e2f419aa079ef270e62988f8a6b
parent4bfdb01f789a50267cbb50288a3bd5bc60edd685 (diff)
downloadlvm2-92908541638b41215d48e51d6fa4aa63b82d8c1a.tar.gz
toollib: Fix uninitialised config value type in get_cachepolicy_params.
-rw-r--r--tools/toollib.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/toollib.c b/tools/toollib.c
index 6d409a9cd..41e6f88a2 100644
--- a/tools/toollib.c
+++ b/tools/toollib.c
@@ -1166,6 +1166,7 @@ struct dm_config_tree *get_cachepolicy_params(struct cmd_context *cmd)
if (!(cn->v = dm_config_create_value(result)))
goto_out;
+ cn->v->type = DM_CFG_STRING;
cn->v->v.str = arg_str_value(cmd, cachepolicy_ARG, NULL);
}