Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libvmod-selector
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
libvmod-selector
Commits
24911df3
Unverified
Commit
24911df3
authored
Oct 27, 2021
by
Nils Goroll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WS_Assert_Allocated() has been removed
parent
93f63b7b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
match.c
src/match.c
+3
-4
No files found.
src/match.c
View file @
24911df3
...
...
@@ -52,7 +52,7 @@ get_match_data(VRT_CTX, struct vmod_selector_set *set, const char *method)
match
->
magic
=
MATCH_DATA_MAGIC
;
}
else
{
WS_Assert_Allocated
(
ctx
->
ws
,
task
->
priv
,
sizeof
(
*
match
));
AN
(
WS_Allocated
(
ctx
->
ws
,
task
->
priv
,
sizeof
(
*
match
)
));
CAST_OBJ
(
match
,
task
->
priv
,
MATCH_DATA_MAGIC
);
}
return
match
;
...
...
@@ -195,7 +195,7 @@ get_existing_match_data(VRT_CTX,
set
->
vcl_name
,
method
);
return
(
NULL
);
}
WS_Assert_Allocated
(
ctx
->
ws
,
task
->
priv
,
sizeof
(
*
match
));
AN
(
WS_Allocated
(
ctx
->
ws
,
task
->
priv
,
sizeof
(
*
match
)
));
CAST_OBJ
(
match
,
task
->
priv
,
MATCH_DATA_MAGIC
);
return
match
;
}
...
...
@@ -234,8 +234,7 @@ vmod_set_matched(VRT_CTX, struct VPFX(selector_set) *set, VCL_INT idx,
return
(
0
);
AN
(
match
->
indices
);
WS_Assert_Allocated
(
ctx
->
ws
,
match
->
indices
,
match
->
n
*
sizeof
(
unsigned
));
AN
(
WS_Allocated
(
ctx
->
ws
,
match
->
indices
,
match
->
n
*
sizeof
(
unsigned
)));
if
(
idx
>
0
)
{
/* XXX search algorithm? */
...
...
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