From d6f8f02eca17bafb7f01c7c0c61966015d7d54b4 Mon Sep 17 00:00:00 2001 From: haojun Liao Date: Mon, 6 Jan 2020 11:38:26 +0800 Subject: [PATCH] increase the value range for pSql->numOfSubs increase the value range for pSql->numOfSubs from uint8_t to uint16_t --- src/client/inc/tsclient.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/inc/tsclient.h b/src/client/inc/tsclient.h index 6adf2f1be1..147d9d23cd 100644 --- a/src/client/inc/tsclient.h +++ b/src/client/inc/tsclient.h @@ -390,7 +390,7 @@ typedef struct _sql_obj { tsem_t emptyRspSem; SSqlCmd cmd; SSqlRes res; - uint8_t numOfSubs; + uint16_t numOfSubs; char* asyncTblPos; void* pTableHashList; struct _sql_obj **pSubs;