Replace the atexit() handler with the display cleanup callback,
reusing the existing spice_app_atexit() function.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
ui/spice-app.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/ui/spice-app.c b/ui/spice-app.c
index 0df7325e679..fe3df62bfa5 100644
--- a/ui/spice-app.c
+++ b/ui/spice-app.c
@@ -119,16 +119,17 @@ static const TypeInfo char_vc_type_info = {
.class_size = sizeof(VCChardevClass),
};
-static void spice_app_atexit(void)
+static void spice_app_cleanup(void)
{
if (sock_path) {
unlink(sock_path);
+ g_clear_pointer(&sock_path, g_free);
}
if (tmp_dir) {
rmdir(tmp_dir);
+ tmp_dir = NULL;
}
- g_free(sock_path);
- g_free(app_dir);
+ g_clear_pointer(&app_dir, g_free);
}
static void spice_app_display_early_init(DisplayOptions *opts)
@@ -146,8 +147,6 @@ static void spice_app_display_early_init(DisplayOptions *opts)
exit(1);
}
- atexit(spice_app_atexit);
-
if (qemu_name) {
app_dir = g_build_filename(g_get_user_runtime_dir(),
"qemu", qemu_name, NULL);
@@ -218,6 +217,7 @@ static QemuDisplay qemu_display_spice_app = {
.type = DISPLAY_TYPE_SPICE_APP,
.early_init = spice_app_display_early_init,
.init = spice_app_display_init,
+ .cleanup = spice_app_cleanup,
.vc = "vc",
};
--
2.54.0