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
3a73406b
Commit
3a73406b
authored
Mar 07, 2013
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes for at least one GCC bug
parent
cea487b4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
cache_acceptor.c
bin/varnishd/cache/cache_acceptor.c
+1
-1
cache_vrt_vmod.c
bin/varnishd/cache/cache_vrt_vmod.c
+1
-1
round_robin.c
lib/libvmod_directors/round_robin.c
+1
-1
No files found.
bin/varnishd/cache/cache_acceptor.c
View file @
3a73406b
...
...
@@ -120,7 +120,7 @@ static unsigned need_test;
*/
static
int
vca_tcp_opt_init
()
vca_tcp_opt_init
(
void
)
{
int
n
,
x
;
int
one
=
1
;
...
...
bin/varnishd/cache/cache_vrt_vmod.c
View file @
3a73406b
...
...
@@ -120,7 +120,7 @@ VRT_Vmod_Init(void **hdl, void *ptr, int len, const char *nm,
if
(
strcmp
(
w
,
VMOD_ABI_Version
))
{
VCLI_Out
(
cli
,
"Loading VMOD %s from %s:
\n
"
,
nm
,
path
);
VCLI_Out
(
cli
,
"VMOD ABI (%s)"
,
w
);
VCLI_Out
(
cli
,
"VMOD ABI (%s)"
,
(
char
*
)
w
);
VCLI_Out
(
cli
,
" incompatible with varnish ABI (%s)
\n
"
,
VMOD_ABI_Version
);
(
void
)
dlclose
(
v
->
hdl
);
...
...
lib/libvmod_directors/round_robin.c
View file @
3a73406b
...
...
@@ -134,7 +134,7 @@ vmod_round_robin__fini(struct req *req, struct vmod_directors_round_robin **rrp)
VTAILQ_REMOVE
(
&
rr
->
listhead
,
ep
,
list
);
FREE_OBJ
(
ep
);
}
REPLACE
(
rr
->
dir
->
vcl_name
,
NULL
);
free
(
rr
->
dir
->
vcl_name
);
FREE_OBJ
(
rr
->
dir
);
FREE_OBJ
(
rr
);
}
...
...
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