Change type conversion method

This commit is contained in:
admin 2022-03-21 12:34:32 +08:00
parent d9d8507c8f
commit 6a4d2b3368

View file

@ -11,7 +11,6 @@ import (
"runtime" "runtime"
"strings" "strings"
"time" "time"
"unsafe"
) )
var ( var (
@ -132,7 +131,7 @@ func NewRuleSetProvider(name string, behavior P.RuleType, interval time.Duration
} }
if rp.behavior == P.Classical { if rp.behavior == P.Classical {
rp.count = len(*(*[]C.Rule)(unsafe.Pointer(&rules))) rp.count = len(rules.([]C.Rule))
} else { } else {
rp.count = len(rulesRaw) rp.count = len(rulesRaw)
} }