Эх сурвалжийг харах

Fixed slice out of bound bug

Toby Chui 1 сар өмнө
parent
commit
23b2490d28
1 өөрчлөгдсөн 2 нэмэгдсэн , 1 устгасан
  1. 2 1
      main.go

+ 2 - 1
main.go

@@ -4,6 +4,7 @@ import (
 	"encoding/json"
 	"fmt"
 	"os"
+	"strings"
 
 	smart "imuslab.com/bokofs/bokofsd/mod/middleware/SMART"
 )
@@ -22,7 +23,7 @@ func main() {
 		if deviceFile.IsDir() {
 			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()
 			fmt.Println(fullPath)