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
fd05ef3c
Unverified
Commit
fd05ef3c
authored
Aug 01, 2023
by
Nils Goroll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support backend reference counting
parent
eea2ff5f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vmod_selector.c
src/vmod_selector.c
+2
-1
No files found.
src/vmod_selector.c
View file @
fd05ef3c
...
...
@@ -434,6 +434,7 @@ vmod_set__fini(struct vmod_selector_set **setp)
struct
entry
*
entry
=
set
->
table
[
i
];
CHECK_OBJ_NOTNULL
(
entry
,
VMOD_SELECTOR_ENTRY_MAGIC
);
VRT_Assign_Backend
(
&
entry
->
backend
,
NULL
);
free
(
entry
->
string
);
FREE_OBJ
(
entry
);
break
;
...
...
@@ -515,7 +516,7 @@ vmod_set_add(VRT_CTX, struct vmod_selector_set *set,
set_added
(
set
,
n
-
1
,
REGEX
);
}
if
(
args
->
valid_backend
)
{
entry
->
backend
=
args
->
backend
;
VRT_Assign_Backend
(
&
entry
->
backend
,
args
->
backend
)
;
set_added
(
set
,
n
-
1
,
BACKEND
);
}
if
(
args
->
valid_integer
)
{
...
...
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