summaryrefslogtreecommitdiffstats
path: root/xlators/mgmt/glusterd/src/glusterd-utils.c
diff options
context:
space:
mode:
authorSakshi Bansal <sabansal@redhat.com>2015-02-03 13:05:02 +0530
committerKrishnan Parthasarathi <kparthas@redhat.com>2015-06-10 01:50:04 -0700
commit9374b2ef417104ba51bc03a55ff8c5a521c749f4 (patch)
tree203283a354f6f5006254c7295cdfbb98a1c1c88e /xlators/mgmt/glusterd/src/glusterd-utils.c
parent9307b943947daa1fe93afdeef5bfae606423b38a (diff)
glusterd: coverity fix for string overflow
Coverity CID: 1222523 Coverity CID: 1210990 Coverity CID: 1229877 Coverity CID: 1229876 Coverity CID: 1124855 Change-Id: Iba615724909216f923074cb4585940b919d02166 BUG: 789278 Signed-off-by: Sakshi Bansal <sabansal@redhat.com> Reviewed-on: http://review.gluster.org/9555 Tested-by: Gluster Build System <jenkins@build.gluster.com> Tested-by: NetBSD Build System <jenkins@build.gluster.org> Reviewed-by: Rajesh Joseph <rjoseph@redhat.com> Reviewed-by: Krishnan Parthasarathi <kparthas@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-utils.c')
-rw-r--r--xlators/mgmt/glusterd/src/glusterd-utils.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-utils.c b/xlators/mgmt/glusterd/src/glusterd-utils.c
index 5e99ee99550..996cf89bb4a 100644
--- a/xlators/mgmt/glusterd/src/glusterd-utils.c
+++ b/xlators/mgmt/glusterd/src/glusterd-utils.c
@@ -5535,7 +5535,7 @@ glusterd_is_path_in_use (char *path, gf_boolean_t *in_use, char **op_errstr)
if (!path)
goto out;
- strcpy (dir, path);
+ strncpy (dir, path, (sizeof (dir) - 1));
curdir = dir;
do {
for (i = 0; !used && keys[i]; i++) {
@@ -9336,7 +9336,8 @@ glusterd_update_mntopts (char *brick_path, glusterd_brickinfo_t *brickinfo)
goto out;
}
- strcpy (brickinfo->fstype, entry->mnt_type);
+ strncpy (brickinfo->fstype, entry->mnt_type,
+ (sizeof (brickinfo->fstype) - 1));
strcpy (brickinfo->mnt_opts, entry->mnt_opts);
ret = 0;