diff --git a/engine/src/desktop/com/jme3/system/Natives.java b/engine/src/desktop/com/jme3/system/Natives.java index 54eda3d48..3f0384070 100644 --- a/engine/src/desktop/com/jme3/system/Natives.java +++ b/engine/src/desktop/com/jme3/system/Natives.java @@ -160,7 +160,9 @@ public class Natives { out.write(buf, 0, len); } in.close(); + in = null; out.close(); + out = null; // NOTE: On OSes that support "Date Created" property, // this will cause the last modified date to be lower than @@ -176,6 +178,9 @@ public class Natives { if (load) { System.load(targetFile.getAbsolutePath()); } + if(in != null){ + in.close(); + } if(out != null){ out.close(); }