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
660f7351
Commit
660f7351
authored
Aug 12, 2020
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing assert
parent
06575ef4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
cache_ban_build.c
bin/varnishd/cache/cache_ban_build.c
+3
-2
No files found.
bin/varnishd/cache/cache_ban_build.c
View file @
660f7351
...
...
@@ -425,9 +425,11 @@ ban_build_arg_operhelp(struct vsb *vsb, int arg)
void
BAN_Build_Init
(
void
)
{
struct
vsb
*
vsb
=
VSB_new_auto
()
;
struct
vsb
*
vsb
;
int
i
;
vsb
=
VSB_new_auto
();
AN
(
vsb
);
for
(
i
=
BANS_ARG_OFF_
;
i
<
BANS_ARG_LIM
;
i
++
)
{
VSB_clear
(
vsb
);
ban_build_arg_operhelp
(
vsb
,
i
);
...
...
@@ -438,7 +440,6 @@ BAN_Build_Init(void) {
}
arg_operhelp
[
BAN_ARGIDX
(
i
)]
=
NULL
;
VSB_destroy
(
&
vsb
);
AZ
(
vsb
);
}
void
...
...
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