fix: wildcard matching problem
This commit is contained in:
parent
c96748e198
commit
7160fb2a4b
1 changed files with 2 additions and 2 deletions
|
@ -104,8 +104,8 @@ func (ss *DomainSet) Has(key string) bool {
|
||||||
goto RESTART
|
goto RESTART
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
for ; ; nextBmIdx++ {
|
for ; nextBmIdx-nextNodeId < len(ss.labels); nextBmIdx++ {
|
||||||
if nextBmIdx-nextNodeId < len(ss.labels) && ss.labels[nextBmIdx-nextNodeId] == domainStepByte {
|
if ss.labels[nextBmIdx-nextNodeId] == domainStepByte {
|
||||||
bmIdx = nextBmIdx
|
bmIdx = nextBmIdx
|
||||||
nodeId = nextNodeId
|
nodeId = nextNodeId
|
||||||
i = j
|
i = j
|
||||||
|
|
Loading…
Reference in a new issue