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

Commit 9766f251 authored by Muhammad Falak R Wani's avatar Muhammad Falak R Wani Committed by Greg Kroah-Hartman
Browse files

usb: core: driver: Use kmalloc_array



Use kmalloc_array instead of kmalloc to allocate memory for an array.
Also, remove the dev_warn for a memory leak, making the if check more
sleek.

Signed-off-by: default avatarMuhammad Falak R Wani <falakreyaz@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 776c15d0
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -421,13 +421,11 @@ static int usb_unbind_interface(struct device *dev)
		if (ep->streams == 0)
			continue;
		if (j == 0) {
			eps = kmalloc(USB_MAXENDPOINTS * sizeof(void *),
			eps = kmalloc_array(USB_MAXENDPOINTS, sizeof(void *),
				      GFP_KERNEL);
			if (!eps) {
				dev_warn(dev, "oom, leaking streams\n");
			if (!eps)
				break;
		}
		}
		eps[j++] = ep;
	}
	if (j) {