mount: release need to avoid nil reader

fix https://github.com/chrislusf/seaweedfs/issues/1803
This commit is contained in:
Chris Lu 2021-02-13 13:39:37 -08:00
parent 4ce56bac08
commit 712b3e9e53

View File

@ -196,7 +196,9 @@ func (fh *FileHandle) Release(ctx context.Context, req *fuse.ReleaseRequest) err
fh.f.wfs.ReleaseHandle(fh.f.fullpath(), fuse.HandleID(fh.handle)) fh.f.wfs.ReleaseHandle(fh.f.fullpath(), fuse.HandleID(fh.handle))
if closer, ok := fh.f.reader.(io.Closer); ok { if closer, ok := fh.f.reader.(io.Closer); ok {
closer.Close() if closer != nil {
closer.Close()
}
} }
fh.f.reader = nil fh.f.reader = nil
} }