summaryrefslogtreecommitdiffstats
path: root/xlators/mgmt/glusterd/src/glusterd-store.c
diff options
context:
space:
mode:
authorBhumika Goyal <bgoyal@redhat.com>2018-08-18 00:06:58 +0530
committerAmar Tumballi <amarts@redhat.com>2018-08-20 12:10:45 +0000
commit788cda4cd36574092bef1449ecda579163d06776 (patch)
treee1a2d6fe8fb4b81a76f7fb9c3eec843dbe17f734 /xlators/mgmt/glusterd/src/glusterd-store.c
parent21199aaeb272da4b7857351bb2aa51f36c7e22cd (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-store.c')
-rw-r--r--xlators/mgmt/glusterd/src/glusterd-store.c13
1 files changed, 3 insertions, 10 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-store.c b/xlators/mgmt/glusterd/src/glusterd-store.c
index 028fb78857e..6dd9764875b 100644
--- a/xlators/mgmt/glusterd/src/glusterd-store.c
+++ b/xlators/mgmt/glusterd/src/glusterd-store.c
@@ -1858,14 +1858,12 @@ glusterd_store_delete_volume (glusterd_volinfo_t *volinfo)
"%s/"GLUSTERD_TRASH"/%s.deleted", priv->workdir,
uuid_utoa (volinfo->volume_id));
if ((len < 0) || (len >= sizeof(delete_path))) {
- ret = -1;
goto out;
}
len = snprintf (trashdir, sizeof (trashdir), "%s/"GLUSTERD_TRASH,
priv->workdir);
if ((len < 0) || (len >= sizeof(trashdir))) {
- ret = -1;
goto out;
}
@@ -1874,7 +1872,6 @@ glusterd_store_delete_volume (glusterd_volinfo_t *volinfo)
gf_msg (this->name, GF_LOG_ERROR, errno,
GD_MSG_CREATE_DIR_FAILED, "Failed to create trash "
"directory");
- ret = -1;
goto out;
}
@@ -1934,14 +1931,12 @@ glusterd_store_delete_snap (glusterd_snap_t *snap)
"%s/"GLUSTERD_TRASH"/snap-%s.deleted", priv->workdir,
uuid_utoa (snap->snap_id));
if ((len < 0) || (len >= sizeof(delete_path))) {
- ret = -1;
goto out;
}
len = snprintf (trashdir, sizeof (trashdir), "%s/"GLUSTERD_TRASH,
priv->workdir);
if ((len < 0) || (len >= sizeof(trashdir))) {
- ret = -1;
goto out;
}
@@ -1950,7 +1945,6 @@ glusterd_store_delete_snap (glusterd_snap_t *snap)
gf_msg (this->name, GF_LOG_ERROR, errno,
GD_MSG_CREATE_DIR_FAILED, "Failed to create trash "
"directory");
- ret = -1;
goto out;
}
@@ -1967,7 +1961,6 @@ glusterd_store_delete_snap (glusterd_snap_t *snap)
if (!dir) {
gf_msg_debug (this->name, 0, "Failed to open directory %s.",
delete_path);
- ret = 0;
goto out;
}
@@ -1976,7 +1969,6 @@ glusterd_store_delete_snap (glusterd_snap_t *snap)
len = snprintf (path, PATH_MAX, "%s/%s", delete_path,
entry->d_name);
if ((len < 0) || (len >= PATH_MAX)) {
- ret = -1;
goto stat_failed;
}
ret = sys_stat (path, &st);
@@ -3418,7 +3410,6 @@ glusterd_store_retrieve_volumes (xlator_t *this, glusterd_snap_t *snap)
len = snprintf (entry_path, PATH_MAX, "%s/%s", path,
entry->d_name);
if ((len < 0) || (len >= PATH_MAX)) {
- ret = -1;
goto next;
}
ret = sys_lstat (entry_path, &st);
@@ -3453,7 +3444,7 @@ glusterd_store_retrieve_volumes (xlator_t *this, glusterd_snap_t *snap)
"Creating a new node_state "
"for volume: %s.", entry->d_name);
glusterd_store_create_nodestate_sh_on_absence (volinfo);
- ret = glusterd_store_perform_node_state_store (volinfo);
+ glusterd_store_perform_node_state_store (volinfo);
}
next:
@@ -4372,6 +4363,8 @@ glusterd_store_peer_write (int fd, glusterd_peerinfo_t *peerinfo)
}
out:
+ if (key)
+ GF_FREE (key);
gf_msg_debug ("glusterd", 0, "Returning with %d", ret);
return ret;
}