mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-29 21:33:53 -06:00
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. -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEtIKLr5QxQM7yo0kQcdTV5YIvc9YFAls2DEgACgkQcdTV5YIv c9ZShw/6AuDMeWpzFHAdf4lBuUdDFyAC7QFln8xdb+MDus5whAvtt7vDeY0OKbgo w5VDTkstO7h4jQJDHkjzHK91ZdUbgu0Tj7C09x4oQpUueNWsTZGcPBvNGadjjOBt 70LdwyV2nSER3+QNjTNznrh0faxay4xuSTIY/mW6iudeWGobwXmseEeOE8gGM+w0 s1GwxMVKIfllKUmW2vx0mGfn02pKtTnan+Si+sp/AnY9xSquFfHWpZhXZlkZrfYd mgtJOTY9IpSekr9jBBKgUlZ/QVYiliDzuh3ePDYKtsuHZZ7z2ype3DkXqYOnblOs C+2gWUE/TC5BStjRX3RmPv21dpfkEdlxOZpgXbpP1VgKqbtnbnvcgTL89IPv9afl Aj+q5uYR494kOL5rSDynVRdWhnUmMnkqHCZpKG+IRMHv6GlrXpxOQWenwCS/vYWK swKqRwGj0CFugdt7qVZ+4XjXbbWEI21dHHG7nAXinfakKVOfJYIeGIQC7WfpIrxy ApV0mHSceK0AMBJvlf1Zf0Qm0lJ7Ay7MRT/5XWDFV9Bogf+wxtGvf9Ukc2qQhwd8 mR9iN7rlWz3VSu5vS3bEdsiBXKibxIRfv7HhF5fa+mwkZA9gMbj33vVds1zA4ta1 Qw4doRq4xWui3uNO9jvtcXtW5Bq7N4p6wVFK76dLVHk5axLCIec= =vVJr -----END PGP SIGNATURE----- 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:
commit
b2866c2915
8 changed files with 53 additions and 22 deletions
|
@ -544,6 +544,21 @@ int qemu_strtou64(const char *nptr, const char **endptr, int base,
|
|||
return check_strtox_error(nptr, ep, endptr, errno);
|
||||
}
|
||||
|
||||
/**
|
||||
* Searches for the first occurrence of 'c' in 's', and returns a pointer
|
||||
* to the trailing null byte if none was found.
|
||||
*/
|
||||
#ifndef HAVE_STRCHRNUL
|
||||
const char *qemu_strchrnul(const char *s, int c)
|
||||
{
|
||||
const char *e = strchr(s, c);
|
||||
if (!e) {
|
||||
e = s + strlen(s);
|
||||
}
|
||||
return e;
|
||||
}
|
||||
#endif
|
||||
|
||||
/**
|
||||
* parse_uint:
|
||||
*
|
||||
|
|
|
@ -77,11 +77,7 @@ const char *get_opt_value(const char *p, char **value)
|
|||
|
||||
*value = NULL;
|
||||
while (1) {
|
||||
offset = strchr(p, ',');
|
||||
if (!offset) {
|
||||
offset = p + strlen(p);
|
||||
}
|
||||
|
||||
offset = qemu_strchrnul(p, ',');
|
||||
length = offset - p;
|
||||
if (*offset != '\0' && *(offset + 1) == ',') {
|
||||
length++;
|
||||
|
|
|
@ -52,6 +52,7 @@
|
|||
*/
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
#include "qemu/cutils.h"
|
||||
|
||||
#include "qemu/uri.h"
|
||||
|
||||
|
@ -2266,10 +2267,7 @@ struct QueryParams *query_params_parse(const char *query)
|
|||
/* Find the next separator, or end of the string. */
|
||||
end = strchr(query, '&');
|
||||
if (!end) {
|
||||
end = strchr(query, ';');
|
||||
}
|
||||
if (!end) {
|
||||
end = query + strlen(query);
|
||||
end = qemu_strchrnul(query, ';');
|
||||
}
|
||||
|
||||
/* Find the first '=' character between here and end. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue