clear-pkgs-linux-iot-lts2018/0537-vhm-use-correct-string...

36 lines
1.2 KiB
Diff
Raw Permalink Normal View History

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2018-10-11 02:06:46 +08:00
From: Shuo Liu <shuo.a.liu@intel.com>
Date: Fri, 31 Aug 2018 10:59:02 +0800
Subject: [PATCH] vhm: use correct string length
2018-10-11 02:06:46 +08:00
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Fix below compile warning:
drivers/vhm/vhm_ioreq.c:207:3: warning: strncpy specified bound 16
equals destination size [-Wstringop-truncation]
strncpy(client->name, name, sizeof(client->name));
Signed-off-by: Shuo Liu <shuo.a.liu@intel.com>
Reviewed-by: Jason Chen CJ <jason.cj.chen@intel.com>
---
drivers/vhm/vhm_ioreq.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/vhm/vhm_ioreq.c b/drivers/vhm/vhm_ioreq.c
2020-10-27 02:14:06 +08:00
index c91a60598114..5cb15b5badd8 100644
2018-10-11 02:06:46 +08:00
--- a/drivers/vhm/vhm_ioreq.c
+++ b/drivers/vhm/vhm_ioreq.c
@@ -204,7 +204,7 @@ int acrn_ioreq_create_client(unsigned long vmid, ioreq_handler_t handler,
client->vmid = vmid;
if (name)
- strncpy(client->name, name, 16);
+ strncpy(client->name, name, sizeof(client->name) - 1);
spin_lock_init(&client->range_lock);
INIT_LIST_HEAD(&client->range_list);
init_waitqueue_head(&client->wq);
--
https://clearlinux.org
2018-10-11 02:06:46 +08:00