瀏覽代碼

fix edge case where io.open(whatever):read() returns nil

master
XeonSquared 10 月之前
父節點
當前提交
a33476cf00
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. +1
    -1
      lib/libmtar.lua

+ 1
- 1
lib/libmtar.lua 查看文件

@@ -24,7 +24,7 @@ end
function mtar.iter(stream) -- table -- function -- Given buffer *stream*, returns an iterator suitable for use with *for* that returns, for each iteration, the file name, a function to read from the file, and the length of the file.
local remain = 0
local function read(n)
local rb = stream:read(math.min(n,remain))
local rb = stream:read(math.min(n,remain)) or ""
remain = remain - rb:len()
return rb
end


Loading…
取消
儲存