updated to correctly use the correctly configured temp directory

Former-commit-id: 1080d1ae37304188818f59fff5234d29857c64f5
This commit is contained in:
Jeremy Long
2014-03-08 06:21:08 -05:00
parent 0e60883b3d
commit 12fd77f0b2

View File

@@ -158,7 +158,7 @@ public class AssemblyAnalyzer extends AbstractAnalyzer {
@Override
public void initialize() throws Exception {
super.initialize();
final File tempFile = File.createTempFile("GKA", ".exe");
final File tempFile = File.createTempFile("GKA", ".exe", Settings.getTempDirectory());
FileOutputStream fos = null;
InputStream is = null;
try {