From 0af8526ab107fd4f1862db87cf26aff97940f322 Mon Sep 17 00:00:00 2001 From: Marvin W Date: Wed, 1 Apr 2020 16:08:28 +0200 Subject: Work-around use after free Upstream: https://gitlab.gnome.org/GNOME/vala/-/issues/751 --- main/src/ui/util/helper.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/src/ui/util') diff --git a/main/src/ui/util/helper.vala b/main/src/ui/util/helper.vala index 6421473e..4af2cf3c 100644 --- a/main/src/ui/util/helper.vala +++ b/main/src/ui/util/helper.vala @@ -62,7 +62,7 @@ public static async AvatarDrawer get_conversation_avatar_drawer(StreamInteractor return yield get_conversation_participants_avatar_drawer(stream_interactor, conversation, new Jid[0]); } -public static async AvatarDrawer get_conversation_participants_avatar_drawer(StreamInteractor stream_interactor, Conversation conversation, Jid[] jids) { +public static async AvatarDrawer get_conversation_participants_avatar_drawer(StreamInteractor stream_interactor, Conversation conversation, owned Jid[] jids) { AvatarManager avatar_manager = stream_interactor.get_module(AvatarManager.IDENTITY); MucManager muc_manager = stream_interactor.get_module(MucManager.IDENTITY); if (conversation.type_ != Conversation.Type.GROUPCHAT) { -- cgit v1.2.3-54-g00ecf