Delete extracted native code on exit

This commit is contained in:
md_5 2014-02-12 19:53:33 +11:00
parent 87f3706736
commit 56e9e6a245

View File

@ -37,6 +37,8 @@ public class NativeCipher implements BungeeCipher
{
// Else we will create and copy it to a temp file
File temp = File.createTempFile( "bungeecord-native-cipher", ".so" );
temp.deleteOnExit();
try ( OutputStream outputStream = new FileOutputStream( temp ) )
{
ByteStreams.copy( lib, outputStream );