All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] usb: core: message: remove memset in usb_get_descriptor()
@ 2019-06-29  6:03 yuan linyu
  2019-06-29  7:32 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: yuan linyu @ 2019-06-29  6:03 UTC (permalink / raw)
  To: linux-usb; +Cc: yuan linyu

in the loop, if get a descriptor which is not desired type,
the buf will be not clean.
caller check return length to decide success or not.

Signed-off-by: yuan linyu <cugyly@163.com>
---
 drivers/usb/core/message.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/usb/core/message.c b/drivers/usb/core/message.c
index e844bb7b5676..03425e6b3da9 100644
--- a/drivers/usb/core/message.c
+++ b/drivers/usb/core/message.c
@@ -640,8 +640,6 @@ int usb_get_descriptor(struct usb_device *dev, unsigned char type,
 	int i;
 	int result;
 
-	memset(buf, 0, size);	/* Make sure we parse really received data */
-
 	for (i = 0; i < 3; ++i) {
 		/* retry on length 0 or error; some devices are flakey */
 		result = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] usb: core: message: remove memset in usb_get_descriptor()
  2019-06-29  6:03 [PATCH] usb: core: message: remove memset in usb_get_descriptor() yuan linyu
@ 2019-06-29  7:32 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2019-06-29  7:32 UTC (permalink / raw)
  To: yuan linyu; +Cc: linux-usb

On Sat, Jun 29, 2019 at 02:03:14PM +0800, yuan linyu wrote:
> in the loop, if get a descriptor which is not desired type,
> the buf will be not clean.
> caller check return length to decide success or not.

I'm sorry, but I can not understand these sentances at all.  How does
this relate to remiving a memset() call?  Why do you need to, or want
to, remove it?  What does this fix?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-06-29  7:32 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-29  6:03 [PATCH] usb: core: message: remove memset in usb_get_descriptor() yuan linyu
2019-06-29  7:32 ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.