diff mbox series

[resend] usb: gadget: legacy: fix error return code of msg_bind()

Message ID 20210307085219.22147-1-baijiaju1990@gmail.com
State Superseded
Headers show
Series [resend] usb: gadget: legacy: fix error return code of msg_bind() | expand

Commit Message

Jia-Ju Bai March 7, 2021, 8:52 a.m. UTC
When usb_otg_descriptor_alloc() returns NULL to usb_desc, no error
return code of msg_bind() is assigned.
To fix this bug, status is assigned with -ENOMEM in this case.

Reported-by: TOTE Robot <oslab@tsinghua.edu.cn>>
Signed-off-by: Jia-Ju Bai <baijiaju1990@gmail.com>
---
 drivers/usb/gadget/legacy/mass_storage.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

Comments

Greg Kroah-Hartman March 23, 2021, 11:35 a.m. UTC | #1
On Sun, Mar 07, 2021 at 12:52:19AM -0800, Jia-Ju Bai wrote:
> When usb_otg_descriptor_alloc() returns NULL to usb_desc, no error

> return code of msg_bind() is assigned.

> To fix this bug, status is assigned with -ENOMEM in this case.

> 

> Reported-by: TOTE Robot <oslab@tsinghua.edu.cn>>


You have 2 '>' on the end of this line :(
diff mbox series

Patch

diff --git a/drivers/usb/gadget/legacy/mass_storage.c b/drivers/usb/gadget/legacy/mass_storage.c
index 9ed22c5fb7fe..ac1741126619 100644
--- a/drivers/usb/gadget/legacy/mass_storage.c
+++ b/drivers/usb/gadget/legacy/mass_storage.c
@@ -175,8 +175,10 @@  static int msg_bind(struct usb_composite_dev *cdev)
 		struct usb_descriptor_header *usb_desc;
 
 		usb_desc = usb_otg_descriptor_alloc(cdev->gadget);
-		if (!usb_desc)
+		if (!usb_desc) {
+			status = -ENOMEM;
 			goto fail_string_ids;
+		}
 		usb_otg_descriptor_init(cdev->gadget, usb_desc);
 		otg_desc[0] = usb_desc;
 		otg_desc[1] = NULL;