mirror of
https://github.com/mii443/qemu.git
synced 2025-08-22 15:15:46 +00:00
cutils: Provide strchrnul
strchrnul is a GNU extension and thus unavailable on a number of targets. In the review for a commit removing strchrnul from 9p, I was asked to create a qemu_strchrnul helper to factor out this functionality. Do so, and use it in a number of other places in the code base that inlined the replacement pattern in a place where strchrnul could be used. Signed-off-by: Keno Fischer <keno@juliacomputing.com> Acked-by: Greg Kurz <groug@kaod.org> Reviewed-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Greg Kurz <groug@kaod.org>
This commit is contained in:
@ -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. */
|
||||
|
Reference in New Issue
Block a user