mirror of https://github.com/lidarr/Lidarr
MediaInfo Dispose only when handle was created.
This commit is contained in:
parent
c9f720885e
commit
c4430ab4de
|
@ -72,13 +72,19 @@ namespace NzbDrone.Core.MediaFiles.MediaInfo
|
|||
}
|
||||
|
||||
~MediaInfo()
|
||||
{
|
||||
if (_handle != IntPtr.Zero)
|
||||
{
|
||||
MediaInfo_Delete(_handle);
|
||||
}
|
||||
}
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
if (_handle != IntPtr.Zero)
|
||||
{
|
||||
MediaInfo_Delete(_handle);
|
||||
}
|
||||
GC.SuppressFinalize(this);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue