You've already forked PlayIntegrityFork
mirror of
https://github.com/osm0sis/PlayIntegrityFork.git
synced 2025-09-06 06:37:06 +00:00
Fix
This commit is contained in:
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.22.1)
|
||||
|
||||
project(zygisk)
|
||||
|
||||
include_directories(libcxx/include libcxx/include/abi)
|
||||
include_directories(libcxx/include)
|
||||
|
||||
link_libraries(${CMAKE_SOURCE_DIR}/libcxx/${CMAKE_ANDROID_ARCH_ABI}.a)
|
||||
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
|
||||
typedef void (*T_Callback)(void *, const char *, const char *, uint32_t);
|
||||
|
||||
std::map<void *, T_Callback> map;
|
||||
static std::map<void *, T_Callback> map;
|
||||
|
||||
static void
|
||||
handle_system_property(void *cookie, const char *name, const char *value, uint32_t serial) {
|
||||
@@ -87,7 +87,7 @@ public:
|
||||
|
||||
auto fd = api->connectCompanion();
|
||||
|
||||
long size = -1;
|
||||
long size;
|
||||
read(fd, &size, sizeof(size));
|
||||
|
||||
char buffer[size];
|
||||
|
||||
Reference in New Issue
Block a user