commit d6128a8849f3df3cc1af0a72e2846303786a3c73
parent 7f3f128e103c117ca0c1e57cb203513021edf182
Author: rhunk <101876869+rhunk@users.noreply.github.com>
Date:   Wed,  7 Feb 2024 20:49:24 +0100

fix(native): open_database armv7 sig

Diffstat:
Mnative/jni/src/hooks/sqlite_mutex.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/native/jni/src/hooks/sqlite_mutex.h b/native/jni/src/hooks/sqlite_mutex.h @@ -35,8 +35,8 @@ namespace SqliteMutexHook { void init() { auto open_database_sig = util::find_signature( common::client_module.base, common::client_module.size, - ARM64 ? "FF FF 00 A9 3F 00 00 F9" : "8D B0 06 46 E7 48", - ARM64 ? -0x3C : -0x7 + ARM64 ? "FF FF 00 A9 3F 00 00 F9" : "9A 46 90 46 78 44 89 46 05 68", + ARM64 ? -0x3C : -0xd ); if (open_database_sig == 0) { LOGE("sqlite3 openDatabase sig not found");