Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
elbestream
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
misc
elbestream
Commits
51c0e396
Unverified
Commit
51c0e396
authored
Mar 31, 2022
by
Nils Goroll
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
splicer fallback also for unknown errnos
parent
e42437c8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
elbestream.c
elbestream.c
+4
-1
No files found.
elbestream.c
View file @
51c0e396
...
...
@@ -318,8 +318,11 @@ splicer(void *a)
do
{
r
=
splice
(
fds
[
0
],
NULL
,
fds
[
1
],
NULL
,
SIZE_MAX
,
SPLICE_F_MORE
|
SPLICE_F_MOVE
);
if
(
r
==
-
1
&&
errno
==
EINVAL
)
if
(
r
==
-
1
)
{
if
(
errno
!=
EINVAL
)
perror
(
"splicer unexpected error"
);
return
(
splicer_fallback
(
fds
));
}
assert
(
r
>=
0
);
}
while
(
r
!=
0
);
...
...
Nils Goroll
@slink
mentioned in commit
1ba36344
·
Mar 31, 2022
mentioned in commit
1ba36344
mentioned in commit 1ba36344238158ce273e22ca8469ef4e77ffdc5d
Toggle commit list
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