Browse Source

made libmtar cope with lower memory systems at the expense of speed

master
XeonSquared 3 years ago
parent
commit
8865768576
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      lib/libmtar.lua

+ 3
- 1
lib/libmtar.lua View File

@@ -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…
Cancel
Save