forked from organicmaps/organicmaps
Fixed possible crash in file copying.
This commit is contained in:
parent
87933c8c12
commit
f442492e80
1 changed files with 4 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue