测试内存泄露问题

This commit is contained in:
junleea 2025-03-10 15:22:09 +08:00
parent b27a7fb7cc
commit 795cc35396
1 changed files with 1 additions and 2 deletions

View File

@ -195,14 +195,13 @@ func subscribeAndHandleMessagesV6(ws *websocket.Conn, deviceId int) {
count := 0 count := 0
//定时器,发送计数器 //定时器,发送计数器
tCount := 0 tCount := 0
var buf []byte
//计算帧率 //计算帧率
for { for {
//从service获取当前帧 //从service获取当前帧
c := service.DeviceFrameCount[deviceId] c := service.DeviceFrameCount[deviceId]
if c != count { if c != count {
count = c count = c
buf = service.Device1CurrentFrame.ToBytes() buf := service.Device1CurrentFrame.ToBytes()
err2 := ws.WriteMessage(websocket.BinaryMessage, buf) err2 := ws.WriteMessage(websocket.BinaryMessage, buf)
if err2 != nil { if err2 != nil {
log.Printf("send message to client err:%v", err2) log.Printf("send message to client err:%v", err2)