[bugfix] dlopen parameter problem.
This commit is contained in:
parent
160a6e7419
commit
f88043a222
2
dump.js
2
dump.js
|
@ -358,7 +358,7 @@ function loadAllDynamicLibrary(app_path) {
|
|||
}
|
||||
|
||||
if (!is_loaded) {
|
||||
if (dlopen(file_path.UTF8String(), 9)) {
|
||||
if (dlopen(allocStr(file_path.UTF8String()), 9)) {
|
||||
console.log("[frida-ios-dump]: dlopen " + file_name + " success. ");
|
||||
} else {
|
||||
console.log("[frida-ios-dump]: dlopen " + file_name + " failed. ");
|
||||
|
|
Loading…
Reference in New Issue