From e8c9a7a5e0d2ac7676c0f9ce707d61f37ffa23d9 Mon Sep 17 00:00:00 2001 From: zii-dmg Date: Thu, 10 Jun 2021 21:35:54 +0300 Subject: [PATCH] Fixed SList ownership --- Source/Libs/GLibSharp/SList.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Libs/GLibSharp/SList.cs b/Source/Libs/GLibSharp/SList.cs index 0b587fc12..c7c264df4 100644 --- a/Source/Libs/GLibSharp/SList.cs +++ b/Source/Libs/GLibSharp/SList.cs @@ -84,7 +84,7 @@ namespace GLib { public SList (IntPtr raw, System.Type element_type) : this (raw, element_type, false, false) {} - public SList (IntPtr raw, System.Type element_type, bool owned, bool elements_owned) : base (raw, element_type, false, false) {} + public SList (IntPtr raw, System.Type element_type, bool owned, bool elements_owned) : base (raw, element_type, owned, elements_owned) {} public SList (object[] members, System.Type element_type, bool owned, bool elements_owned) : this (IntPtr.Zero, element_type, owned, elements_owned) {