Fixed possible crash in file copying.

This commit is contained in:
Dmitry Yunitsky 2015-06-22 16:47:54 +03:00 committed by Alex Zolotarev
parent 87933c8c12
commit f442492e80

View file

@ -531,8 +531,10 @@ public class StoragePathManager
outputChannel.transferFrom(inputChannel, 0, inputChannel.size());
} finally
{
inputChannel.close();
outputChannel.close();
if (inputChannel != null)
inputChannel.close();
if (outputChannel != null)
outputChannel.close();
}
}