瀏覽代碼

fix lint warnings

Darien Raymond 8 年之前
父節點
當前提交
fbbed156db
共有 2 個文件被更改,包括 4 次插入4 次删除
  1. 2 2
      transport/internet/kcp/xor_amd64.s
  2. 2 2
      v2ray.go

+ 2 - 2
transport/internet/kcp/xor_amd64.s

@@ -3,7 +3,7 @@
 // func xorfwd(x []byte)
 TEXT ·xorfwd(SB),NOSPLIT,$0
   MOVQ x+0(FP), SI  // x[i]
-  MOVL x_len+8(FP), CX  // x.len
+  MOVQ x_len+8(FP), CX  // x.len
   MOVQ x+0(FP), DI
   ADDQ $4, DI       // x[i+4]
   SUBQ $4, CX
@@ -24,7 +24,7 @@ xorfwddone:
 // func xorbkd(x []byte)
 TEXT ·xorbkd(SB),NOSPLIT,$0
   MOVQ x+0(FP), SI
-  MOVL x_len+8(FP), CX  // x.len
+  MOVQ x_len+8(FP), CX  // x.len
   MOVQ x+0(FP), DI
   ADDQ CX, SI       // x[-8]
   SUBQ $8, SI

+ 2 - 2
v2ray.go

@@ -69,7 +69,7 @@ func newSimpleServer(config *Config) (*simpleServer, error) {
 		if err != nil {
 			return nil, newError("failed apply default log settings").Base(err)
 		}
-		space.AddApplication(l)
+		common.Must(space.AddApplication(l))
 	}
 
 	outboundHandlerManager := proxyman.OutboundHandlerManagerFromSpace(space)
@@ -115,7 +115,7 @@ func newSimpleServer(config *Config) (*simpleServer, error) {
 		if err != nil {
 			return nil, err
 		}
-		space.AddApplication(d)
+		common.Must(space.AddApplication(d))
 		disp = d.(dispatcher.Interface)
 	}