Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libvdfp-pipe
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
uplex-varnish
libvdfp-pipe
Commits
b5f25139
Unverified
Commit
b5f25139
authored
Apr 29, 2021
by
Nils Goroll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assert that, for POLLIN received, there actually is data to be read
parent
b1ec77f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
vdfp_pipe.c
src/vdfp_pipe.c
+1
-6
No files found.
src/vdfp_pipe.c
View file @
b5f25139
...
...
@@ -473,17 +473,12 @@ vdp_bytes(struct vdp_ctx *ctx, enum vdp_action act, void **priv,
close_all
(
fds
);
return
(
-
1
);
}
assert
(
nbytes
>
0
);
if
(
i
==
STDOUT_FILENO
&&
fds
[
i
].
revents
&
POLLHUP
&&
nbytes
<
obj
->
bufsz
)
{
act_bytes
=
VDP_END
;
}
if
(
nbytes
==
0
)
{
if
(
i
==
STDOUT_FILENO
)
closefd
(
&
fds
[
STDOUT_FILENO
].
fd
);
else
closefd
(
&
fds
[
STDERR_FILENO
].
fd
);
}
if
(
i
==
STDOUT_FILENO
)
{
retval
=
VDP_bytes
(
ctx
,
act_bytes
,
state
->
buf
,
nbytes
);
...
...
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