Change type conversion method

This commit is contained in:
gVisor bot 2022-03-21 12:34:32 +08:00
parent f2b00371ef
commit bb918ca352

View File

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