Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
432ebd54
Commit
432ebd54
authored
Oct 02, 2013
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a couple of asserts to explain stuff to Coverity
parent
dba23219
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
cache_esi_parse.c
bin/varnishd/cache/cache_esi_parse.c
+1
-0
storage_persistent_subr.c
bin/varnishd/storage/storage_persistent_subr.c
+1
-0
No files found.
bin/varnishd/cache/cache_esi_parse.c
View file @
432ebd54
...
...
@@ -926,6 +926,7 @@ VEP_Parse(const struct busyobj *bo, const char *p, size_t l)
* Match against a table while split over input
* sections.
*/
AN
(
vep
->
match
);
do
{
if
(
*
p
==
'>'
)
{
for
(
vm
=
vep
->
match
;
...
...
bin/varnishd/storage/storage_persistent_subr.c
View file @
432ebd54
...
...
@@ -139,6 +139,7 @@ smp_reset_sign(struct smp_signctx *ctx)
{
memset
(
ctx
->
ss
,
0
,
sizeof
*
ctx
->
ss
);
assert
(
strlen
(
ctx
->
id
)
<
sizeof
*
ctx
->
ss
);
strcpy
(
ctx
->
ss
->
ident
,
ctx
->
id
);
ctx
->
ss
->
unique
=
ctx
->
unique
;
ctx
->
ss
->
mapped
=
(
uintptr_t
)
ctx
->
ss
;
...
...
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