aboutsummaryrefslogtreecommitdiffstats
path: root/executor
diff options
context:
space:
mode:
authorAndrey Konovalov <andreyknvl@google.com>2019-04-25 16:04:37 +0200
committerAndrey Konovalov <andreyknvl@gmail.com>2019-04-25 16:06:29 +0200
commitf46aabc8c612c04f848f319670af5fb64e7fbcc9 (patch)
tree8bedff523d5df970fefa42a93810bda2e9d00892 /executor
parent8e3c52b11d5d0843be47f41e00c5612ce29811b0 (diff)
executor: fix another compiler warning
Diffstat (limited to 'executor')
-rw-r--r--executor/common_usb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/executor/common_usb.h b/executor/common_usb.h
index d0cf5dab9..31071fd8c 100644
--- a/executor/common_usb.h
+++ b/executor/common_usb.h
@@ -232,7 +232,7 @@ static volatile long syz_usb_connect(volatile long a0, volatile long a1, volatil
struct usb_device_index index;
memset(&index, 0, sizeof(index));
- int rv;
+ int rv = false;
NONFAILING(rv = parse_usb_descriptor(dev, dev_len, &index));
if (!rv)
return -1;