This commit is contained in:
2025-07-03 20:01:19 +03:00
parent 802598be79
commit dfa8542fb2
13 changed files with 423 additions and 218 deletions
+4 -1
View File
@@ -237,7 +237,10 @@ namespace WebmrAPI.Utils
public void Dispose()
{
if (_ptr != IntPtr.Zero) CloseHandle(_ptr);
if (_ptr != IntPtr.Zero)
{
try { CloseHandle(_ptr); } catch (Exception) { }
}
}
~WindowsProcess()