Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-unixfs
Commits
a77ea2f0
Commit
a77ea2f0
authored
10 years ago
by
Jeromy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix fuse reading on linux
parent
c5f983b5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
fuse/readonly/readonly_unix.go
fuse/readonly/readonly_unix.go
+5
-2
No files found.
fuse/readonly/readonly_unix.go
View file @
a77ea2f0
...
...
@@ -181,8 +181,11 @@ func (s *Node) Read(req *fuse.ReadRequest, resp *fuse.ReadResponse, intr fs.Intr
if
err
!=
nil
{
return
err
}
n
,
err
:=
io
.
ReadFull
(
r
,
resp
.
Data
[
:
req
.
Size
])
n
,
err
:=
r
.
Read
(
resp
.
Data
[
:
req
.
Size
])
if
err
!=
nil
&&
err
!=
io
.
EOF
{
return
err
}
resp
.
Data
=
resp
.
Data
[
:
n
]
lm
[
"res_size"
]
=
n
return
err
// may be non-nil / not succeeded
return
nil
// may be non-nil / not succeeded
}
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment