mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 11:50:51 +00:00
renaming identifiers: handle empty stack (probably never executed branch)
This commit is contained in:
@@ -122,6 +122,7 @@ import java.io.OutputStream;
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.EmptyStackException;
|
||||
import java.util.HashMap;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
@@ -1735,6 +1736,9 @@ public final class SWF {
|
||||
|
||||
try {
|
||||
ins.translate(localData, stack, output, staticOperation, path);
|
||||
} catch (EmptyStackException ex) {
|
||||
// probably obfucated code, never executed branch
|
||||
break;
|
||||
} catch (InterruptedException ex) {
|
||||
Logger.getLogger(SWF.class.getName()).log(Level.SEVERE, "Error during getting variables", ex);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user