diff --git a/trunk/CHANGELOG.txt b/trunk/CHANGELOG.txt index 66f82087f..6e1de1fff 100644 --- a/trunk/CHANGELOG.txt +++ b/trunk/CHANGELOG.txt @@ -1,5 +1,8 @@ Process Hacker +1.2.5.1 + * Fixed huge regression caused by revision #250 in Win32.ProcessHandle.~ProcessHandle() + 1.2.5.0 * Fixed wrong usernames when Process Hacker is running as a non-admin user * Gets command line of processes without using Injector diff --git a/trunk/ProcessHacker/Win32.cs b/trunk/ProcessHacker/Win32.cs index ce5f0b6bf..6c6311479 100644 --- a/trunk/ProcessHacker/Win32.cs +++ b/trunk/ProcessHacker/Win32.cs @@ -143,11 +143,6 @@ namespace ProcessHacker throw new Exception(GetLastErrorMessage()); } - ~ProcessHandle() - { - this.Dispose(); - } - public int Handle { get { return _handle; }