Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
ac07f31f
Commit
ac07f31f
authored
Sep 27, 2012
by
JINMEI Tatuya
Browse files
[master] cleanup: removed a redundant copy construction of LabelSequence.
okayed on jabber.
parent
34a2c954
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/datasrc/memory/zone_finder.cc
View file @
ac07f31f
...
...
@@ -490,9 +490,8 @@ FindNodeResult findNode(const ZoneData& zone_data,
// Clear the node_path so that we don't keep incorrect (NSEC)
// context
node_path
.
clear
();
ZoneTree
::
Result
result
=
tree
.
find
(
LabelSequence
(
wildcard_ls
),
&
node
,
node_path
,
cutCallback
,
&
state
);
ZoneTree
::
Result
result
=
tree
.
find
(
wildcard_ls
,
&
node
,
node_path
,
cutCallback
,
&
state
);
// Otherwise, why would the domain_flag::WILD be there if
// there was no wildcard under it?
assert
(
result
==
ZoneTree
::
EXACTMATCH
);
...
...
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