actions => instructions in AVM2 deobfuscator

added some thread interrupt checks
This commit is contained in:
honfika@gmail.com
2015-07-09 19:19:07 +02:00
parent cc8bf6fb7a
commit 4f22d48cf5
5 changed files with 72 additions and 68 deletions

View File

@@ -1072,7 +1072,7 @@ public class SWFInputStream implements AutoCloseable {
* @throws java.lang.InterruptedException
*/
public List<Tag> readTagList(Timelined timelined, int level, boolean parallel, boolean skipUnusualTags, boolean parseTags, boolean lazy) throws IOException, InterruptedException {
if (Thread.currentThread().interrupted()) {
if (Thread.currentThread().isInterrupted()) {
throw new InterruptedException();
}