Browse Source

Merge branch 'master' of http://git.shengws.com/csx/gdyb

csx 2 years ago
parent
commit
02ca2e8468
1 changed files with 1 additions and 1 deletions
  1. 1 1
      service/fj_service.go

+ 1 - 1
service/fj_service.go View File

@@ -2423,7 +2423,7 @@ func GetFjBusinessHandleInfo(inputStr []byte) (string, string) {
2423 2423
 		fmt.Println("readcard is nil")
2424 2424
 		readCard = DllDef.MustFindProc("read_cardinfo")
2425 2425
 	}
2426
-	outputStr := make([]byte, 0)
2426
+	outputStr := make([]byte, 12288)
2427 2427
 	errMessageStr := make([]byte, 2048)
2428 2428
 	ret2, _, _ := readCard.Call((uintptr)(unsafe.Pointer(&inputStr[0])), uintptr(20000), (uintptr)(unsafe.Pointer(&outputStr[0])), (uintptr)(unsafe.Pointer(&errMessageStr[0])))
2429 2429