diff options
author | Bhumika Goyal <bgoyal@redhat.com> | 2018-08-18 00:06:58 +0530 |
---|---|---|
committer | Amar Tumballi <amarts@redhat.com> | 2018-08-20 12:10:45 +0000 |
commit | 788cda4cd36574092bef1449ecda579163d06776 (patch) | |
tree | e1a2d6fe8fb4b81a76f7fb9c3eec843dbe17f734 /xlators/mgmt/glusterd/src/glusterd-syncop.c | |
parent | 21199aaeb272da4b7857351bb2aa51f36c7e22cd (diff) |
glusterd: fix some coverity issues
Fixes CID: 1241481 1241482 1274079 1274118 1274121 1274131 1274198
1274214 1274220 1274224 1394663 1394641 382454 1382453 1382449 1288095
Link: https://scan6.coverity.com/reports.htm#v42388/p10714/fileInstanceId=84772667&defectInstanceId=25770661&mergedDefectId=744716
Change-Id: Idaf434186231c8b0fff4b27c57fa23636a89c8a7
updates: bz#789278
Signed-off-by: Bhumika Goyal <bgoyal@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-syncop.c')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-syncop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-syncop.c b/xlators/mgmt/glusterd/src/glusterd-syncop.c index 826a6fe015d..01a88f8e145 100644 --- a/xlators/mgmt/glusterd/src/glusterd-syncop.c +++ b/xlators/mgmt/glusterd/src/glusterd-syncop.c @@ -1356,7 +1356,7 @@ stage_done: peerinfo->state.state != GD_FRIEND_STATE_BEFRIENDED) continue; - ret = gd_syncop_mgmt_stage_op (peerinfo, &args, + (void) gd_syncop_mgmt_stage_op (peerinfo, &args, MY_UUID, tmp_uuid, op, req_dict, op_ctx); peer_cnt++; @@ -1487,7 +1487,7 @@ commit_done: peerinfo->state.state != GD_FRIEND_STATE_BEFRIENDED) continue; - ret = gd_syncop_mgmt_commit_op (peerinfo, &args, + (void) gd_syncop_mgmt_commit_op (peerinfo, &args, MY_UUID, tmp_uuid, op, req_dict, op_ctx); peer_cnt++; |