Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 232ebe34 authored by Dan Carpenter's avatar Dan Carpenter Committed by Nicholas Bellinger
Browse files

target/usb-gadget: strlen() doesn't count the terminator



We need to take the terminator into consideration here or the last
character gets silently truncated away later.

Signed-off-by: default avatarDan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: default avatarNicholas Bellinger <nab@linux-iscsi.org>
parent 8ecf595b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1815,7 +1815,7 @@ static ssize_t tcm_usbg_tpg_store_nexus(
		ret = tcm_usbg_drop_nexus(tpg);
		return (!ret) ? count : ret;
	}
	if (strlen(page) > USBG_NAMELEN) {
	if (strlen(page) >= USBG_NAMELEN) {
		pr_err("Emulated NAA Sas Address: %s, exceeds"
				" max: %d\n", page, USBG_NAMELEN);
		return -EINVAL;