[Spice-devel] [PATCH spice-server v2 5/11] reds: Use GLib memory functions for link
Jonathon Jongsma
jjongsma at redhat.com
Tue Sep 19 15:04:04 UTC 2017
It's a bit small now. I suppose it could be squashed, or left as is.
Acked-by: Jonathon Jongsma <jjongsma at redhat.com>
On Tue, 2017-09-19 at 07:35 +0100, Frediano Ziglio wrote:
> Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
> ---
> server/reds.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> Changes since v1:
> - rebases on master, one free was removed.
>
> diff --git a/server/reds.c b/server/reds.c
> index 8b081bbe2..683af96ff 100644
> --- a/server/reds.c
> +++ b/server/reds.c
> @@ -345,7 +345,7 @@ static void reds_link_free(RedLinkInfo *link)
> link->tiTicketing.rsa = NULL;
> }
>
> - free(link);
> + g_free(link);
> }
>
> #ifdef RED_STATISTICS
> @@ -2455,7 +2455,7 @@ static RedLinkInfo
> *reds_init_client_connection(RedsState *reds, int socket)
>
> red_socket_set_keepalive(socket, TRUE, KEEPALIVE_TIMEOUT);
>
> - link = spice_new0(RedLinkInfo, 1);
> + link = g_new0(RedLinkInfo, 1);
> link->reds = reds;
> link->stream = reds_stream_new(reds, socket);
>
More information about the Spice-devel
mailing list