From 5f8bb87c243b1c910c2960c27e9da5f063a8a4c2 Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Sun, 11 Jan 2015 16:06:42 +0100 Subject: [PATCH] max swf version updated in memory search --- libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWFSearch.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWFSearch.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWFSearch.java index f76c496d9..a1acd4c0f 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWFSearch.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/SWFSearch.java @@ -89,7 +89,7 @@ public class SWFSearch { boolean valid = swf.fileSize > 0 && swf.version > 0 && (!swf.tags.isEmpty() || noCheck) - && swf.version < 25; // Needs to be fixed when SWF versions reaches this value + && swf.version < 30; // Needs to be fixed when SWF versions reaches this value if (valid) { long limit = pmi.getPos(); MemoryInputStream is = new MemoryInputStream(mis.getAllRead(), (int) (long) addr, (int) limit);