Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
libvmod-re2
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-re2
Commits
2dc5d5f7
Unverified
Commit
2dc5d5f7
authored
Aug 01, 2023
by
Nils Goroll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support backend reference counting
parent
f65590a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
set.c
src/set.c
+5
-1
No files found.
src/set.c
View file @
2dc5d5f7
...
...
@@ -281,6 +281,9 @@ vmod_set__fini(struct vmod_re2_set **setp)
if
(
vbit_test
(
set
->
added
[
REGEX
],
i
)
&&
set
->
regex
[
i
]
!=
NULL
)
vmod_regex__fini
(
&
set
->
regex
[
i
]);
if
(
vbit_test
(
set
->
added
[
BACKEND
],
i
)
&&
set
->
backend
[
i
]
!=
NULL
)
VRT_Assign_Backend
(
&
set
->
backend
[
i
],
NULL
);
}
for
(
unsigned
i
=
0
;
i
<
NELEMS
(
set
->
added
);
i
++
)
vbit_destroy
(
set
->
added
[
i
]);
...
...
@@ -340,7 +343,8 @@ vmod_set_add(VRT_CTX, struct vmod_re2_set *set, struct VARGS(set_add) *args)
VRT_BACKEND_string
(
args
->
backend
));
return
;
}
set
->
backend
[
n
]
=
args
->
backend
;
set
->
backend
[
n
]
=
NULL
;
VRT_Assign_Backend
(
&
set
->
backend
[
n
],
args
->
backend
);
vbit_set
(
set
->
added
[
BACKEND
],
n
);
}
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