Fixed issue #12 for ImageMemFileXfer state exception.

This commit is contained in:
soukoku
2014-06-26 06:42:37 -04:00
parent fed14365f1
commit e639ca5429
3 changed files with 16 additions and 13 deletions

View File

@@ -105,19 +105,22 @@ namespace Tester.Winform
private void CleanupTwain()
{
if (_twain.State == 4)
if (_twain != null)
{
_twain.CurrentSource.Close();
}
if (_twain.State == 3)
{
_twain.Close();
}
if (_twain.State == 4)
{
_twain.CurrentSource.Close();
}
if (_twain.State == 3)
{
_twain.Close();
}
if (_twain.State > 2)
{
// normal close down didn't work, do hard kill
_twain.ForceStepDown(2);
if (_twain.State > 2)
{
// normal close down didn't work, do hard kill
_twain.ForceStepDown(2);
}
}
}