From f46aabc8c612c04f848f319670af5fb64e7fbcc9 Mon Sep 17 00:00:00 2001 From: Andrey Konovalov Date: Thu, 25 Apr 2019 16:04:37 +0200 Subject: executor: fix another compiler warning --- executor/common_usb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'executor/common_usb.h') 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; -- cgit mrf-deployment