Issue #557 private namespaces fix (nullpointer)

This commit is contained in:
Jindra Petk
2014-04-04 19:31:56 +02:00
parent b44f35dd70
commit e511af5430
2 changed files with 4 additions and 1 deletions

View File

@@ -85,6 +85,9 @@ public class AVM2Deobfuscation {
}
public String builtInNs(String ns) {
if(ns == null){
return null;
}
if (ns.equals("http://www.adobe.com/2006/actionscript/flash/proxy")) {
return "flash.utils.flash_proxy";
}

View File

@@ -893,7 +893,7 @@ public class Main {
* @param args the command line arguments
* @throws IOException
*/
public static void main(String[] args) throws IOException {
public static void main(String[] args) throws IOException {
startFreeMemThread();
initLogging(Configuration.debugMode.get());
initLang();