Issue #513: allow skipping tag check on command line extract

This commit is contained in:
Honfika
2014-02-25 19:06:02 +01:00
parent da7ce42746
commit ad05cc4fc9
7 changed files with 25 additions and 14 deletions

View File

@@ -136,7 +136,7 @@ public class LoadFromMemoryFrame extends AppFrame implements ActionListener {
try {
PosMarkedInputStream pmi = new PosMarkedInputStream(ret.get(addr));
ReReadableInputStream is = new ReReadableInputStream(pmi);
SWF swf = new SWF(is, null, false, true);
SWF swf = new SWF(is, null, false, true, false);
long limit = pmi.getPos();
is.seek(0);
is = new ReReadableInputStream(new LimitedInputStream(is, limit));