From: Gerd Hoffmann <kraxel@redhat.com>
To: qemu-devel@nongnu.org
Cc: Gerd Hoffmann <kraxel@redhat.com>
Subject: [Qemu-devel] [PULL 2/3] input-linux: fix Coverity warning
Date: Thu, 24 Mar 2016 08:56:17 +0100 [thread overview]
Message-ID: <1458806178-31096-3-git-send-email-kraxel@redhat.com> (raw)
In-Reply-To: <1458806178-31096-1-git-send-email-kraxel@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 1458129049-12484-1-git-send-email-kraxel@redhat.com
---
ui/input-linux.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/ui/input-linux.c b/ui/input-linux.c
index 59d9348..6ddaa67 100644
--- a/ui/input-linux.c
+++ b/ui/input-linux.c
@@ -213,6 +213,13 @@ static void input_linux_event_keyboard(void *opaque)
*/
continue;
}
+ if (event.code >= KEY_CNT) {
+ /*
+ * Should not happen. But better safe than sorry,
+ * and we make Coverity happy too.
+ */
+ continue;
+ }
/* keep track of key state */
if (!il->keydown[event.code] && event.value) {
il->keydown[event.code] = true;
--
1.8.3.1
next prev parent reply other threads:[~2016-03-24 7:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-24 7:56 [Qemu-devel] [PULL v2 0/3] ui: input-linux + spice fixes Gerd Hoffmann
2016-03-24 7:56 ` [Qemu-devel] [PULL 1/3] input-linux: switch over to -object Gerd Hoffmann
2016-03-24 7:56 ` Gerd Hoffmann [this message]
2016-03-24 7:56 ` [Qemu-devel] [PULL 3/3] spice: Disallow use of gl + TCP port Gerd Hoffmann
2016-03-24 16:23 ` [Qemu-devel] [PULL v2 0/3] ui: input-linux + spice fixes Peter Maydell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1458806178-31096-3-git-send-email-kraxel@redhat.com \
--to=kraxel@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).