Forgot to restore the increment of current keysym.
authorMichael Jumper <zhangmaike@users.sourceforge.net>
Wed, 21 Mar 2012 03:10:22 +0000 (20:10 -0700)
committerMichael Jumper <zhangmaike@users.sourceforge.net>
Wed, 21 Mar 2012 03:10:22 +0000 (20:10 -0700)
src/guac_handlers.c

index 7aee4da..bfb7bda 100644 (file)
@@ -336,6 +336,9 @@ void __guac_rdp_update_keysyms(guac_client* client, const int* keysym_string, in
         if (current_state == from)
             __guac_rdp_send_keysym(client, *keysym_string, to);
 
+        /* Next keysym */
+        keysym_string++;
+
     }
 
 }