Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
443
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Merge requests
!602
HTTP backports
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
HTTP backports
Courmisch/vlc:3.0.x
into
3.0.x
Overview
1
Commits
2
Pipelines
1
Changes
2
Merged
Rémi Denis-Courmont
requested to merge
Courmisch/vlc:3.0.x
into
3.0.x
3 years ago
Overview
1
Commits
2
Pipelines
1
Changes
2
Expand
3
0
Merge request reports
Compare
3.0.x
3.0.x (base)
and
latest version
latest version
248a8e56
2 commits,
3 years ago
2 files
+
15
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
modules/access/http/h1conn.c
+
9
−
0
Options
@@ -274,7 +274,16 @@ static void vlc_h1_stream_close(struct vlc_http_stream *stream, bool abort)
assert
(
conn
->
active
);
if
(
conn
->
connection_close
)
/* Server requested closing the connection after this stream. */
abort
=
true
;
if
(
conn
->
content_length
>
0
&&
conn
->
content_length
!=
UINTMAX_MAX
)
/* Client left some data to be read, so pipelining is impossible. */
abort
=
true
;
if
(
abort
)
/* Shut the underlying connection down and prevent reuse. */
vlc_h1_stream_fatal
(
conn
);
conn
->
active
=
false
;
Loading