mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-04-03 10:45:39 +00:00
Fix processPayload
This commit is contained in:
parent
6bdc57cbe4
commit
6f77f190f2
@ -322,7 +322,8 @@ abstract class MagiskInstallImpl protected constructor(
|
|||||||
|
|
||||||
val fd = Os.open(fifo.path, O_WRONLY, 0)
|
val fd = Os.open(fifo.path, O_WRONLY, 0)
|
||||||
try {
|
try {
|
||||||
val buf = ByteBuffer.allocate(1024 * 1024)
|
val bufSize = 1024 * 1024
|
||||||
|
val buf = ByteBuffer.allocate(bufSize)
|
||||||
buf.position(input.read(buf.array()).coerceAtLeast(0)).flip()
|
buf.position(input.read(buf.array()).coerceAtLeast(0)).flip()
|
||||||
while (buf.hasRemaining()) {
|
while (buf.hasRemaining()) {
|
||||||
try {
|
try {
|
||||||
@ -334,6 +335,7 @@ abstract class MagiskInstallImpl protected constructor(
|
|||||||
break
|
break
|
||||||
}
|
}
|
||||||
if (!buf.hasRemaining()) {
|
if (!buf.hasRemaining()) {
|
||||||
|
buf.limit(bufSize)
|
||||||
buf.position(input.read(buf.array()).coerceAtLeast(0)).flip()
|
buf.position(input.read(buf.array()).coerceAtLeast(0)).flip()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user