summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--xlators/mgmt/glusterd/src/glusterd-op-sm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-op-sm.c b/xlators/mgmt/glusterd/src/glusterd-op-sm.c
index 8f6861417..b70705508 100644
--- a/xlators/mgmt/glusterd/src/glusterd-op-sm.c
+++ b/xlators/mgmt/glusterd/src/glusterd-op-sm.c
@@ -477,6 +477,7 @@ glusterd_op_stage_delete_volume (gd1_mgmt_stage_op_req *req)
gf_log ("", GF_LOG_ERROR, "Volume with name %s does not exist",
volname);
ret = -1;
+ goto out;
} else {
ret = 0;
}
@@ -492,6 +493,7 @@ glusterd_op_stage_delete_volume (gd1_mgmt_stage_op_req *req)
gf_log ("", GF_LOG_ERROR, "Volume %s has been started."
"Volume needs to be stopped before deletion.",
volname);
+ ret = -1;
goto out;
}