From cfd131e36018059e30d0ae96b771f6ada0a7326a Mon Sep 17 00:00:00 2001 From: Jooseok Song Date: Mon, 22 May 2017 15:16:52 +0900 Subject: [PATCH] Fix TCT Block Issue Change-Id: I5346bb5a9dafd731ba94bb0aad0be40e1ce0dacf --- packaging/csapi-account-manager.spec | 2 +- src/Tizen.Account.AccountManager/Interop/Interop.AccountService.cs | 1 - .../Tizen.Account.AccountManager/Account.cs | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/packaging/csapi-account-manager.spec b/packaging/csapi-account-manager.spec index bc970b3..d844193 100644 --- a/packaging/csapi-account-manager.spec +++ b/packaging/csapi-account-manager.spec @@ -1,6 +1,6 @@ Name: csapi-account-manager Summary: Tizen account manager API for C# -Version: 1.0.6 +Version: 1.0.7 Release: 1 Group: Development/Libraries License: Apache-2.0 diff --git a/src/Tizen.Account.AccountManager/Interop/Interop.AccountService.cs b/src/Tizen.Account.AccountManager/Interop/Interop.AccountService.cs index 9804c1c..d418f64 100644 --- a/src/Tizen.Account.AccountManager/Interop/Interop.AccountService.cs +++ b/src/Tizen.Account.AccountManager/Interop/Interop.AccountService.cs @@ -108,7 +108,6 @@ internal static partial class Interop protected override bool ReleaseHandle() { - Account.Destroy(this.handle); this.SetHandle(IntPtr.Zero); return true; } diff --git a/src/Tizen.Account.AccountManager/Tizen.Account.AccountManager/Account.cs b/src/Tizen.Account.AccountManager/Tizen.Account.AccountManager/Account.cs index cabe14c..ae1031c 100644 --- a/src/Tizen.Account.AccountManager/Tizen.Account.AccountManager/Account.cs +++ b/src/Tizen.Account.AccountManager/Tizen.Account.AccountManager/Account.cs @@ -586,7 +586,6 @@ namespace Tizen.Account.AccountManager { if (_handle != IntPtr.Zero) { - Interop.Account.Destroy(_handle); _handle = IntPtr.Zero; } } -- 2.7.4