From 4122841b0997b0da5255130ef8f21f455c5060e3 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Wed, 12 Jan 2022 10:03:56 +1100 Subject: [PATCH] [client] spice: fix memory leak --- client/src/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/client/src/main.c b/client/src/main.c index a3afb777..baa8916f 100644 --- a/client/src/main.c +++ b/client/src/main.c @@ -838,6 +838,8 @@ void spiceReady(void) memcpy(g_state.spiceUUID, info.uuid, sizeof(g_state.spiceUUID)); g_state.spiceUUIDValid = true; checkUUID(); + + purespice_freeServerInfo(&info); } int spiceThread(void * arg)