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 / Register
Toggle navigation
Open sidebar
LSH
lsh
Commits
7f44d04c
Commit
7f44d04c
authored
Dec 08, 1998
by
Niels Möller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
Rev: src/io.c:1.32
parent
09508d78
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/io.c
src/io.c
+4
-1
No files found.
src/io.c
View file @
7f44d04c
...
...
@@ -227,7 +227,10 @@ static int do_read(struct abstract_read **r, UINT32 length, UINT8 *buffer)
{
int
res
=
read
(
closure
->
fd
,
buffer
,
length
);
if
(
!
res
)
return
A_EOF
;
{
debug
(
"Read EOF on fd %d.
\n
"
,
closure
->
fd
);
return
A_EOF
;
}
if
(
res
>
0
)
return
res
;
...
...
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