Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnishevent3
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
varnishevent3
Commits
feafbe25
Commit
feafbe25
authored
Mar 30, 2011
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Handle the case where we already have a full buffer on entry.
parent
2e3b5a5d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
cache_gzip.c
bin/varnishd/cache_gzip.c
+6
-2
No files found.
bin/varnishd/cache_gzip.c
View file @
feafbe25
...
...
@@ -367,12 +367,16 @@ VGZ_WrwGunzip(struct sess *sp, struct vgz *vg, void *ibuf, ssize_t ibufl,
VGZ_Ibuf
(
vg
,
ibuf
,
ibufl
);
VGZ_Obuf
(
vg
,
obuf
+
*
obufp
,
ibufl
-
*
obufp
);
do
{
i
=
VGZ_Gunzip
(
vg
,
&
dp
,
&
dl
);
if
(
obufl
==
*
obufp
)
i
=
VGZ_STUCK
;
else
{
i
=
VGZ_Gunzip
(
vg
,
&
dp
,
&
dl
);
*
obufp
+=
dl
;
}
if
(
i
<
VGZ_OK
)
{
/* XXX: VSL ? */
return
(
-
1
);
}
*
obufp
+=
dl
;
if
(
obufl
==
*
obufp
||
i
==
VGZ_STUCK
)
{
WRW_Write
(
sp
->
wrk
,
obuf
,
*
obufp
);
if
(
WRW_Flush
(
sp
->
wrk
))
...
...
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