qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PULL 8/9] usb: add device checks before redirector cal


From: Liam Merwick
Subject: Re: [Qemu-devel] [PULL 8/9] usb: add device checks before redirector calls to usb_ep_get()
Date: Fri, 22 Feb 2019 00:17:39 +0000
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:60.0) Gecko/20100101 Thunderbird/60.5.0

On 20/02/2019 11:24, Yuval Shaia wrote:
On Wed, Feb 20, 2019 at 12:13:45PM +0100, Gerd Hoffmann wrote:
From: Liam Merwick <address@hidden>

Add an assert and an explicit check before the two callers to
usb_ep_get() in the USB redirector code to ensure the device
passed in is not NULL.

Signed-off-by: Liam Merwick <address@hidden>
Message-id: address@hidden
Signed-off-by: Gerd Hoffmann <address@hidden>
---
  hw/usb/redirect.c | 3 ++-
  1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/hw/usb/redirect.c b/hw/usb/redirect.c
index 18a42d1938..7cb6b120d4 100644
--- a/hw/usb/redirect.c
+++ b/hw/usb/redirect.c
@@ -1728,6 +1728,7 @@ static void usbredir_ep_info(void *priv,
      USBRedirDevice *dev = priv;
      int i;
+ assert(dev != NULL);

Suggesting:
     assert(dev)

      for (i = 0; i < MAX_ENDPOINTS; i++) {
          dev->endpoint[i].type = ep_info->type[i];
          dev->endpoint[i].interval = ep_info->interval[i];
@@ -2125,7 +2126,7 @@ static int usbredir_post_load(void *priv, int version_id)
  {
      USBRedirDevice *dev = priv;
- if (dev->parser == NULL) {
+    if (dev == NULL || dev->parser == NULL) {

Suggesting
     if (!dev || !dev->parser)


The rest of the file tests for '== NULL' so I used that for consistency (but in any case, my personal preferences is to just use that boolean style check with boolean variables). As it happens, the commits have already been pulled.

Regards,
Liam



reply via email to

[Prev in Thread] Current Thread [Next in Thread]