cooper.wu

Results 3 issues of cooper.wu

https://github.com/cloudreve/Cloudreve/issues/599

### Description Fixes #10823 ### Checklist - [x] I have explained the need for this PR and the problem it solves - [ ] I have explained the changes or...

wait for update
need test cases

pkg/inspect/sysctl_inspect.go ``` func parseSysctlVal(val []string) string { - if len(val) == 0 && val == nil { + if len(val) == 0 || val == nil { return "" }...

kind/bug