mirror of
https://github.com/torvalds/linux.git
synced 2026-06-08 14:42:37 +02:00
mei: bus: fix possible boundaries violation
commit cfda2794b5 upstream.
function 'strncpy' will fill whole buffer 'id.name' of fixed size (32)
with string value and will not leave place for NULL-terminator.
Possible buffer boundaries violation in following string operations.
Replace strncpy with strlcpy.
Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com>
Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
858879737b
commit
ba8beb4ca8
|
|
@ -71,7 +71,7 @@ static int mei_cl_device_probe(struct device *dev)
|
|||
|
||||
dev_dbg(dev, "Device probe\n");
|
||||
|
||||
strncpy(id.name, dev_name(dev), MEI_CL_NAME_SIZE);
|
||||
strlcpy(id.name, dev_name(dev), sizeof(id.name));
|
||||
|
||||
return driver->probe(device, &id);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user