mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 03:32:33 +08:00
parent
3dfff84cc3
commit
14c9cf1b97
|
@ -98,7 +98,7 @@ func (t *DomainTrie) Search(domain string) *Node {
|
|||
|
||||
n := t.search(t.root, parts)
|
||||
|
||||
if n.Data == nil {
|
||||
if n == nil || n.Data == nil {
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
|
@ -27,6 +27,7 @@ func TestTrie_Basic(t *testing.T) {
|
|||
assert.NotNil(t, tree.Insert("", localIP))
|
||||
assert.Nil(t, tree.Search(""))
|
||||
assert.NotNil(t, tree.Search("localhost"))
|
||||
assert.Nil(t, tree.Search("www.google.com"))
|
||||
}
|
||||
|
||||
func TestTrie_Wildcard(t *testing.T) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user