Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
unique-xids
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
unique-xids
Commits
72d94d7c
Commit
72d94d7c
authored
Mar 02, 2011
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing checks for Z_OK
Found & Patch by: Dmitry Panov
parent
ddc3902f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
cache_gzip.c
bin/varnishd/cache_gzip.c
+2
-2
No files found.
bin/varnishd/cache_gzip.c
View file @
72d94d7c
...
...
@@ -428,7 +428,7 @@ vfp_gunzip_bytes(struct sess *sp, struct http_conn *htc, ssize_t bytes)
assert
(
i
==
Z_OK
||
i
==
Z_STREAM_END
);
sp
->
obj
->
len
+=
dl
;
}
if
(
i
==
Z_STREAM_END
)
if
(
i
==
Z_
OK
||
i
==
Z_
STREAM_END
)
return
(
1
);
return
(
-
1
);
}
...
...
@@ -580,7 +580,7 @@ vfp_testgzip_bytes(struct sess *sp, struct http_conn *htc, ssize_t bytes)
assert
(
i
==
Z_OK
||
i
==
Z_STREAM_END
);
}
}
if
(
i
==
Z_STREAM_END
)
if
(
i
==
Z_
OK
||
i
==
Z_
STREAM_END
)
return
(
1
);
return
(
-
1
);
}
...
...
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