1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-12-04 20:07:36 +00:00

dummy-provider: Fix get_origins to return a copy of the origin list

This commit is contained in:
Bob Ham 2018-06-11 12:26:59 +01:00
parent 948ca6ad65
commit 7da2f512f3

View file

@ -49,7 +49,7 @@ static GList *
get_origins (CallsProvider *iface)
{
CallsDummyProvider *self = CALLS_DUMMY_PROVIDER (iface);
return self->origins;
return g_list_copy (self->origins);
}
CallsDummyProvider *