From f2c2c906c0a81d24b14832974994604ea4569e0d Mon Sep 17 00:00:00 2001 From: Amar Tumballi Date: Wed, 19 Dec 2018 10:25:44 +0530 Subject: all: handle string-overflow warnings of coverity updates: bz#789278 Change-Id: I7de800b90a614e3666e965b0cafc70026a844b2d Signed-off-by: Amar Tumballi --- xlators/storage/posix/src/posix-helpers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xlators/storage/posix/src/posix-helpers.c') diff --git a/xlators/storage/posix/src/posix-helpers.c b/xlators/storage/posix/src/posix-helpers.c index 208e319b336..922170c3e33 100644 --- a/xlators/storage/posix/src/posix-helpers.c +++ b/xlators/storage/posix/src/posix-helpers.c @@ -367,7 +367,7 @@ _posix_get_marker_all_contributions(posix_xattr_filler_t *filler) list_offset = 0; while (remaining_size > 0) { - strcpy(key, list + list_offset); + strncpy(key, list + list_offset, sizeof(key)); if (fnmatch(marker_contri_key, key, 0) == 0) { ret = _posix_xattr_get_set_from_backend(filler, key); } -- cgit