From 203845ed616edf92dce56d29c38ab293bcc77d1d Mon Sep 17 00:00:00 2001 From: chaeheehong Date: Mon, 4 Nov 2024 17:13:13 +0900 Subject: [PATCH] [WiFi] Fix heap-buffer-use-after-free issue on ASAN (#6437) --- src/Tizen.Network.WiFi/Interop/Interop.WiFi.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Tizen.Network.WiFi/Interop/Interop.WiFi.cs b/src/Tizen.Network.WiFi/Interop/Interop.WiFi.cs index 434d5bd2540..580f0cc0268 100755 --- a/src/Tizen.Network.WiFi/Interop/Interop.WiFi.cs +++ b/src/Tizen.Network.WiFi/Interop/Interop.WiFi.cs @@ -361,7 +361,6 @@ public override bool IsInvalid protected override bool ReleaseHandle() { - WiFi.Config.Destroy(this.handle); this.SetHandle(IntPtr.Zero); return true; }