Displaying 2 results from an estimated 2 matches for "1566cdf".
2015 Jun 26
0
Re: URI Handling Patch
...the elements in the query string.
> I've successfully mounted remote vhds in Azure with this new code, and the
> basic set of tests pass. If there's anything else I can do by way of
> verification, please let me know.
> diff --git a/fish/uri.c b/fish/uri.c
> index 593e62a..1566cdf 100644
> --- a/fish/uri.c
> +++ b/fish/uri.c
> @@ -178,12 +178,20 @@ parse (const char *arg, char **path_ret, char **protocol_ret,
> }
> }
>
> + if (asprintf(&path, "%s?%s", uri->path, uri->query_raw) == -1) {
> + perror ("asprintf: pat...
2015 Jun 25
4
URI Handling Patch
I have written a patch (please see attached) which fixes both of these bugs:
https://bugzilla.redhat.com/show_bug.cgi?id=1092583
https://bugzilla.redhat.com/show_bug.cgi?id=1232477
By default, when saving a URI using xmlSaveUri it escapes everything in the
URI. QEMU doesn't want anything escaped, so now I unescape everything
after the URI is generated. Unfortunately there's no flag to