From: qydysky Date: Tue, 3 Oct 2023 13:40:56 +0000 (+0800) Subject: Fix build fail X-Git-Tag: v0.11.2~10 X-Git-Url: http://127.0.0.1:8081/?a=commitdiff_plain;h=002fd088429f1c7924d21578a571781f5fc7b5ee;p=bili_danmu%2F.git Fix build fail --- diff --git a/Reply/F/fmp4Tomp4/reader.go b/Reply/F/fmp4Tomp4/reader.go index 95d8125..9ed2249 100644 --- a/Reply/F/fmp4Tomp4/reader.go +++ b/Reply/F/fmp4Tomp4/reader.go @@ -59,8 +59,8 @@ func (t *reader) Read(box Box, size int) BoxReader { } else { t.bufChange(size) } - t.f.SeekIndex(box.Index, file.AtOrigin) - t.f.Read(t.buf) + _ = t.f.SeekIndex(box.Index, file.AtOrigin) + _, _ = t.f.Read(t.buf) return BoxReader{t.buf} }