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

dummy: origin: Fix memory leaks

This commit is contained in:
Evangelos Ribeiro Tzaras 2022-01-27 16:35:34 +01:00
parent 7cba40ff60
commit a8de63f838

View file

@ -235,6 +235,7 @@ finalize (GObject *object)
CallsDummyOrigin *self = CALLS_DUMMY_ORIGIN (object);
g_string_free (self->name, TRUE);
g_list_free (self->calls);
G_OBJECT_CLASS (calls_dummy_origin_parent_class)->finalize (object);
}