1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-28 06:39:32 +00:00

ringer: Cancel any ongoing actions on shutdown

This commit is contained in:
Evangelos Ribeiro Tzaras 2022-08-18 21:12:11 +02:00
parent 97626c467f
commit 8c6d64ddaf

View file

@ -467,6 +467,9 @@ dispose (GObject *object)
g_clear_handle_id (&self->restart_id, g_source_remove);
g_cancellable_cancel (self->cancel_ring);
g_clear_object (&self->cancel_ring);
G_OBJECT_CLASS (calls_ringer_parent_class)->dispose (object);
}