(DecryptScript): dispose of the input stream after decryption is done.

This commit is contained in:
morkt 2016-02-04 10:36:27 +04:00
parent 4262db76fb
commit 01874b69ae

View File

@ -402,6 +402,7 @@ NextEntry:
}
}
output.Position = 0;
input.Dispose();
return output;
}
}