提交 d1d35c48 编写于 作者: dengyihao's avatar dengyihao

fix: make CI happy

上级 eac5d2c4
...@@ -376,7 +376,7 @@ void cliHandleResp(SCliConn* conn) { ...@@ -376,7 +376,7 @@ void cliHandleResp(SCliConn* conn) {
return; return;
} }
if (pMsg->type != Release) { if (pMsg && pMsg->type != Release) {
if (cliAppCb(conn, &transMsg, pMsg) != 0) { if (cliAppCb(conn, &transMsg, pMsg) != 0) {
return; return;
} }
...@@ -437,7 +437,7 @@ void cliHandleExceptImpl(SCliConn* pConn, int32_t code) { ...@@ -437,7 +437,7 @@ void cliHandleExceptImpl(SCliConn* pConn, int32_t code) {
continue; continue;
} }
} }
if (pMsg->type != Release) { if (pMsg && pMsg->type != Release) {
if (cliAppCb(pConn, &transMsg, pMsg) != 0) { if (cliAppCb(pConn, &transMsg, pMsg) != 0) {
return; return;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册