mirror of
https://github.com/revanced/Apktool.git
synced 2024-12-04 10:02:55 +01:00
refactor: support more random suffix to prevent multi-thread crash
This commit is contained in:
parent
d4b2314e26
commit
44a2e87f81
@ -85,19 +85,16 @@ abstract public class Jar {
|
||||
if (in == null) {
|
||||
throw new FileNotFoundException(resourcePath);
|
||||
}
|
||||
long n = ThreadLocalRandom.current().nextLong();
|
||||
if (n == Long.MIN_VALUE) {
|
||||
n = 0; // corner case
|
||||
} else {
|
||||
n = Math.abs(n);
|
||||
}
|
||||
String suffix = Long.toString(n) + ".tmp";
|
||||
File fileOut = File.createTempFile(tmpPrefix, suffix);
|
||||
long suffix = ThreadLocalRandom.current().nextLong();
|
||||
suffix = suffix == Long.MIN_VALUE ? 0 : Math.abs(suffix);
|
||||
File fileOut = File.createTempFile(tmpPrefix, suffix + ".tmp");
|
||||
fileOut.deleteOnExit();
|
||||
|
||||
OutputStream out = new FileOutputStream(fileOut);
|
||||
IOUtils.copy(in, out);
|
||||
in.close();
|
||||
out.close();
|
||||
|
||||
return fileOut;
|
||||
} catch (IOException ex) {
|
||||
throw new BrutException("Could not extract resource: " + resourcePath, ex);
|
||||
|
Loading…
Reference in New Issue
Block a user