]> Git Repo - qemu.git/commitdiff
ui: fix crash with sendkey and raw key numbers
authorDaniel P. Berrange <[email protected]>
Thu, 19 Oct 2017 14:28:41 +0000 (15:28 +0100)
committerGerd Hoffmann <[email protected]>
Mon, 23 Oct 2017 08:50:02 +0000 (10:50 +0200)
Previously we enforced that all key events are using QKeyCodes
at time they are sent:

  commit af07e5ff02ae6d4258fc5331007811d0b1c4d35a
  Author: Daniel P. Berrange <[email protected]>
  Date:   Fri Sep 29 11:12:00 2017 +0100

    ui: convert key events to QKeyCodes immediately

This commit forget to fix the code for the legacy 'sendkey'
command which still accepts key numbers from the user, which
then need converting to QKeyCodes

Signed-off-by: Daniel P. Berrange <[email protected]>
Reviewed-by: Eric Blake <[email protected]>
Message-id: 20171019142848[email protected]
Signed-off-by: Gerd Hoffmann <[email protected]>
ui/input-legacy.c

index 6bc3525499b8f25137ff1c58bf4c669b5bf5aad6..c75aba1549f035becf5b424123afb3fdfdeb375b 100644 (file)
@@ -76,6 +76,11 @@ static KeyValue *copy_key_value(KeyValue *src)
 {
     KeyValue *dst = g_new(KeyValue, 1);
     memcpy(dst, src, sizeof(*src));
+    if (dst->type == KEY_VALUE_KIND_NUMBER) {
+        QKeyCode code = qemu_input_key_number_to_qcode(dst->u.number.data);
+        dst->type = KEY_VALUE_KIND_QCODE;
+        dst->u.qcode.data = code;
+    }
     return dst;
 }
 
This page took 0.024799 seconds and 4 git commands to generate.