Don't let remote errors crash Zygisk

Fix #6095
This commit is contained in:
残页
2022-08-07 20:09:46 +08:00
committed by GitHub
parent 7357a35f8d
commit 52ba6d11bc
2 changed files with 4 additions and 3 deletions
+1
View File
@@ -59,6 +59,7 @@ int remote_request_unmount();
inline int zygisk_request(int req) {
int fd = connect_daemon(MainRequest::ZYGISK);
if (fd < 0) return fd;
write_int(fd, req);
return fd;
}