fix: memory leak in dlerror error log

This commit fixes an memory leak when ReZygisk logs errors for "dlerror".
This commit is contained in:
ThePedroo
2024-07-25 03:10:39 -03:00
parent 954c3a9cc5
commit d53e2af6a7

View File

@@ -189,6 +189,8 @@ bool inject_on_main(int pid, const char *lib_path) {
LOGE("dlerror info %s", err);
free(err);
return false;
}