forked from izaya/OC-PsychOS2
made libmtar cope with lower memory systems at the expense of speed
This commit is contained in:
parent
5db20adefd
commit
8865768576
@ -43,7 +43,9 @@ function mtar.iter(stream) -- table -- function -- Given buffer *stream*, return
|
||||
return rb
|
||||
end
|
||||
return function()
|
||||
stream:read(remain)
|
||||
while remain > 0 do
|
||||
remain=remain-#stream:read(math.min(remain,2048))
|
||||
end
|
||||
local nlen = toint(stream:read(2) or "\0\0")
|
||||
if nlen == 0 then
|
||||
return
|
||||
|
Loading…
Reference in New Issue
Block a user