mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 23:25:48 +00:00
Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging
The Darwin host support still needs some more work. It won't make it for soft-freeze, but I'd like these preparatory patches to be merged anyway. # gpg: Signature made Fri 29 Jun 2018 11:39:04 BST # gpg: using RSA key 71D4D5E5822F73D6 # gpg: Good signature from "Greg Kurz <groug@kaod.org>" # gpg: aka "Gregory Kurz <gregory.kurz@free.fr>" # gpg: aka "[jpeg image of size 3330]" # Primary key fingerprint: B482 8BAF 9431 40CE F2A3 4910 71D4 D5E5 822F 73D6 * remotes/gkurz/tags/for-upstream: 9p: darwin: Explicitly cast comparisons of mode_t with -1 cutils: Provide strchrnul Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
8
hmp.c
8
hmp.c
@ -2145,12 +2145,12 @@ void hmp_sendkey(Monitor *mon, const QDict *qdict)
|
||||
int has_hold_time = qdict_haskey(qdict, "hold-time");
|
||||
int hold_time = qdict_get_try_int(qdict, "hold-time", -1);
|
||||
Error *err = NULL;
|
||||
char *separator;
|
||||
const char *separator;
|
||||
int keyname_len;
|
||||
|
||||
while (1) {
|
||||
separator = strchr(keys, '-');
|
||||
keyname_len = separator ? separator - keys : strlen(keys);
|
||||
separator = qemu_strchrnul(keys, '-');
|
||||
keyname_len = separator - keys;
|
||||
|
||||
/* Be compatible with old interface, convert user inputted "<" */
|
||||
if (keys[0] == '<' && keyname_len == 1) {
|
||||
@ -2187,7 +2187,7 @@ void hmp_sendkey(Monitor *mon, const QDict *qdict)
|
||||
keylist->value->u.qcode.data = idx;
|
||||
}
|
||||
|
||||
if (!separator) {
|
||||
if (!*separator) {
|
||||
break;
|
||||
}
|
||||
keys = separator + 1;
|
||||
|
Reference in New Issue
Block a user