#1170 Extract from Memory in Command Line 2

This commit is contained in:
honfika@gmail.com
2016-03-13 10:18:19 +01:00
parent 2d490115e7
commit 6bf39d05eb
7 changed files with 71 additions and 16 deletions

View File

@@ -67,7 +67,7 @@ public class SearchInMemory {
is.seek(0);
is = new ReReadableInputStream(new LimitedInputStream(is, limit));
if (swf.fileSize > 0 && swf.version > 0 && !swf.getTags().isEmpty() && swf.version <= SWF.MAX_VERSION) {
SwfInMemory s = new SwfInMemory(is, swf.version, swf.fileSize, proc);
SwfInMemory s = new SwfInMemory(is, addr, swf.version, swf.fileSize, proc);
publish(s);
swfStreams.add(s);
}