浏览代码

Fixed slice out of bound bug

Toby Chui 1 月之前
父节点
当前提交
23b2490d28
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      main.go

+ 2 - 1
main.go

@@ -4,6 +4,7 @@ import (
 	"encoding/json"
 	"encoding/json"
 	"fmt"
 	"fmt"
 	"os"
 	"os"
+	"strings"
 
 
 	smart "imuslab.com/bokofs/bokofsd/mod/middleware/SMART"
 	smart "imuslab.com/bokofs/bokofsd/mod/middleware/SMART"
 )
 )
@@ -22,7 +23,7 @@ func main() {
 		if deviceFile.IsDir() {
 		if deviceFile.IsDir() {
 			continue
 			continue
 		}
 		}
-		if deviceFile.Name()[:2] == "sd" || deviceFile.Name()[:4] == "nvme" {
+		if strings.HasPrefix(deviceFile.Name(), "sd") || strings.HasPrefix(deviceFile.Name(), "nvme") {
 			fullPath := "/dev/" + deviceFile.Name()
 			fullPath := "/dev/" + deviceFile.Name()
 			fmt.Println(fullPath)
 			fmt.Println(fullPath)