From: Princeton Ferro Date: Sun, 1 Mar 2020 08:54:13 +0000 (+0100) Subject: vala: Fix circular reference in Property X-Git-Tag: 0.48.0~11 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4fc14d7a526a8c64ad99fb3361389addfa94a033;p=thirdparty%2Fvala.git vala: Fix circular reference in Property --- diff --git a/vala/valaproperty.vala b/vala/valaproperty.vala index 04f3d4958..faa7fdf01 100644 --- a/vala/valaproperty.vala +++ b/vala/valaproperty.vala @@ -223,7 +223,7 @@ public class Vala.Property : Symbol, Lockable { private DataType _data_type; private weak Property _base_property; - private Property _base_interface_property; + private weak Property _base_interface_property; private bool base_properties_valid; PropertyAccessor? _get_accessor; PropertyAccessor? _set_accessor;