aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/UI/SingleInstance.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Common/UI/SingleInstance.cs')
-rw-r--r--MediaBrowser.Common/UI/SingleInstance.cs9
1 files changed, 4 insertions, 5 deletions
diff --git a/MediaBrowser.Common/UI/SingleInstance.cs b/MediaBrowser.Common/UI/SingleInstance.cs
index 837d3bb57..2b2b6fb45 100644
--- a/MediaBrowser.Common/UI/SingleInstance.cs
+++ b/MediaBrowser.Common/UI/SingleInstance.cs
@@ -13,18 +13,17 @@ namespace Microsoft.Shell
using System;
using System.Collections;
using System.Collections.Generic;
+ using System.ComponentModel;
using System.IO;
+ using System.Runtime.InteropServices;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Ipc;
using System.Runtime.Serialization.Formatters;
+ using System.Security;
using System.Threading;
using System.Windows;
using System.Windows.Threading;
- using System.Xml.Serialization;
- using System.Security;
- using System.Runtime.InteropServices;
- using System.ComponentModel;
internal enum WM
{
@@ -184,7 +183,7 @@ namespace Microsoft.Shell
finally
{
- IntPtr p = _LocalFree(argv);
+ _LocalFree(argv);
// Otherwise LocalFree failed.
// Assert.AreEqual(IntPtr.Zero, p);
}