summaryrefslogtreecommitdiffstats
path: root/xlators/storage/posix
diff options
context:
space:
mode:
authorHarpreet Kaur <hlalwani@redhat.com>2018-12-27 20:20:56 +0530
committerAmar Tumballi <amarts@redhat.com>2018-12-31 06:49:15 +0000
commit7a84e705ed0b96f479a0fc52fa734e0367bb2af2 (patch)
treed69636f9c84f2316d58c84419cede704c3bc9ffc /xlators/storage/posix
parent63088d8225df025e03a0ea0a0d8fdc3e8e9b9b08 (diff)
posix: buffer_size_warning coverity fix
Defect: CID 1398469- Calling strncpy with a maximum size argument of 4096 bytes on destination array key of size 4096 bytes might leave the destination string unterminated. Fix: Using snprintf instead of strncpy. updates: bz#789278 Change-Id: I4fdcd0cbf3af8b2ded94603d92d1ceb4112284c4 Signed-off-by: Harpreet Kaur <hlalwani@redhat.com>
Diffstat (limited to 'xlators/storage/posix')
-rw-r--r--xlators/storage/posix/src/posix-helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/storage/posix/src/posix-helpers.c b/xlators/storage/posix/src/posix-helpers.c
index 922170c3e33..874b0a0171b 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) {
- strncpy(key, list + list_offset, sizeof(key));
+ snprintf(key, sizeof(key), "%s", list + list_offset);
if (fnmatch(marker_contri_key, key, 0) == 0) {
ret = _posix_xattr_get_set_from_backend(filler, key);
}