mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-25 23:07:38 +00:00
Fix typo for SAR first stage init
This commit is contained in:
parent
f32a29911b
commit
61599059d5
@ -145,7 +145,7 @@ void SARFirstStageInit::prepare() {
|
|||||||
int src = xopen("/init", O_RDONLY);
|
int src = xopen("/init", O_RDONLY);
|
||||||
int dest = xopen("/dev/init", O_CREAT | O_WRONLY, 0);
|
int dest = xopen("/dev/init", O_CREAT | O_WRONLY, 0);
|
||||||
{
|
{
|
||||||
auto init = raw_data::read(dest);
|
auto init = raw_data::read(src);
|
||||||
init.patch({ make_pair(INIT_PATH, REDIR_PATH) });
|
init.patch({ make_pair(INIT_PATH, REDIR_PATH) });
|
||||||
write(dest, init.buf, init.sz);
|
write(dest, init.buf, init.sz);
|
||||||
fclone_attr(src, dest);
|
fclone_attr(src, dest);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user