diff options
author | Krutika Dhananjay <kdhananj@redhat.com> | 2012-12-19 18:03:42 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2013-01-08 23:58:41 -0800 |
commit | 61905d64188f2db8e33bfe7bc4c499844a6b4b3a (patch) | |
tree | 8bd29b5409d978e0d09900e08ca9b245a2dfca23 /xlators/mgmt/glusterd/src/glusterd-volume-ops.c | |
parent | 386031c784537e3877a0797f3fc28f9a221246ae (diff) |
glusterd: Add GF_ASSERT check in glusterd volume op handlers
Change-Id: Iea6ac1e612812ba8ffc4b60899a9e574a3b09ea6
BUG: 873549
Signed-off-by: Krutika Dhananjay <kdhananj@redhat.com>
Reviewed-on: http://review.gluster.org/4346
Reviewed-by: Pranith Kumar Karampuri <pkarampu@redhat.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Tested-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-volume-ops.c')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-volume-ops.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-volume-ops.c b/xlators/mgmt/glusterd/src/glusterd-volume-ops.c index c70556a5895..6f933e6818c 100644 --- a/xlators/mgmt/glusterd/src/glusterd-volume-ops.c +++ b/xlators/mgmt/glusterd/src/glusterd-volume-ops.c @@ -235,6 +235,7 @@ glusterd_handle_cli_start_volume (rpcsvc_request_t *req) xlator_t *this = NULL; this = THIS; + GF_ASSERT (this); GF_ASSERT (req); ret = xdr_to_generic (req->msg[0], &cli_req, (xdrproc_t)xdr_gf_cli_req); @@ -303,6 +304,7 @@ glusterd_handle_cli_stop_volume (rpcsvc_request_t *req) char err_str[2048] = {0,}; this = THIS; + GF_ASSERT (this); GF_ASSERT (req); ret = xdr_to_generic (req->msg[0], &cli_req, (xdrproc_t)xdr_gf_cli_req); @@ -374,6 +376,7 @@ glusterd_handle_cli_delete_volume (rpcsvc_request_t *req) xlator_t *this = NULL; this = THIS; + GF_ASSERT (this); GF_ASSERT (req); @@ -457,6 +460,7 @@ glusterd_handle_cli_heal_volume (rpcsvc_request_t *req) } this = THIS; + GF_ASSERT (this); if (cli_req.dict.dict_len) { /* Unserialize the dictionary */ @@ -538,6 +542,7 @@ glusterd_handle_cli_statedump_volume (rpcsvc_request_t *req) xlator_t *this = NULL; this = THIS; + GF_ASSERT (this); GF_ASSERT (req); |