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 --- xmpp-vala/src/core/stanza_writer.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'xmpp-vala/src/core') diff --git a/xmpp-vala/src/core/stanza_writer.vala b/xmpp-vala/src/core/stanza_writer.vala index c2f589df..ab51a948 100644 --- a/xmpp-vala/src/core/stanza_writer.vala +++ b/xmpp-vala/src/core/stanza_writer.vala @@ -18,7 +18,7 @@ public class StanzaWriter { yield write_data(s.data); } - private async void write_data(uint8[] data) throws XmlError { + private async void write_data(owned uint8[] data) throws XmlError { if (running) { queue.push_tail(new SourceFuncWrapper(write_data.callback)); yield; -- cgit v1.2.3-54-g00ecf