From 128c8ceebb308029d4a4a3c58c31f5bbfe072d29 Mon Sep 17 00:00:00 2001 From: Pranith Kumar K Date: Wed, 5 Dec 2012 12:20:28 +0530 Subject: cluster/afr: Empty string should not be default option val Glusterd does not allow empty string as default value. Changed afr option values to disallow empty string as value. Change-Id: I92a2d658907dbc6101e1139dd91f548acb5506f5 BUG: 859927 Signed-off-by: Pranith Kumar K Reviewed-on: http://review.gluster.org/4271 Tested-by: Gluster Build System Reviewed-by: Anand Avati --- xlators/cluster/afr/src/afr-self-heal-data.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'xlators/cluster/afr/src/afr-self-heal-data.c') diff --git a/xlators/cluster/afr/src/afr-self-heal-data.c b/xlators/cluster/afr/src/afr-self-heal-data.c index c7a97c991..c90ed7c1a 100644 --- a/xlators/cluster/afr/src/afr-self-heal-data.c +++ b/xlators/cluster/afr/src/afr-self-heal-data.c @@ -412,6 +412,9 @@ sh_algo_from_name (xlator_t *this, char *name) { int i = 0; + if (name == NULL) + goto out; + while (afr_self_heal_algorithms[i].name) { if (!strcmp (name, afr_self_heal_algorithms[i].name)) { return &afr_self_heal_algorithms[i]; @@ -420,6 +423,7 @@ sh_algo_from_name (xlator_t *this, char *name) i++; } +out: return NULL; } -- cgit