[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH 0/5] util/uri: Simplify the code, remove unused functions
From: |
Daniel P . Berrangé |
Subject: |
Re: [PATCH 0/5] util/uri: Simplify the code, remove unused functions |
Date: |
Mon, 22 Jan 2024 19:22:20 +0000 |
User-agent: |
Mutt/2.2.10 (2023-03-25) |
On Mon, Jan 22, 2024 at 08:17:48PM +0100, Thomas Huth wrote:
> The URI function uri_string_unescape() has some overlap with functions
> from the glib, so we can simplify our code here quite a bit.
> While at it, I also noticed that there are many unused functions in
> here which we likely can drop nowadays (it's better to use the functions
> from glib anyway).
>
> Thomas Huth (5):
> util/uri: Remove the unused "target" argument from
> uri_string_unescape()
> util/uri: Simplify uri_string_unescape()
> util/uri: Remove the uri_string_escape() function
> util/uri: Remove unused functions uri_resolve() and
> uri_resolve_relative()
> util/uri: Remove unused macros ISA_RESERVED() and ISA_GEN_DELIM()
>
> include/qemu/uri.h | 5 +-
> util/uri.c | 843 +--------------------------------------------
> 2 files changed, 16 insertions(+), 832 deletions(-)
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
With regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
- [PATCH 2/5] util/uri: Simplify uri_string_unescape(), (continued)