minor changes

This commit is contained in:
Shengliang Guan 2022-02-14 22:43:17 +08:00
parent fb34af9106
commit 08a0bc9b05
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ SRpcMsg* Testbase::SendReq(tmsg_t msgType, void* pCont, int32_t contLen) {
void Testbase::SendShowMetaReq(int8_t showType, const char* db) {
SShowReq showReq = {0};
showReq.type = showType;
//strcpy(showReq.db, db);
strcpy(showReq.db, db);
int32_t contLen = tSerializeSShowReq(NULL, 0, &showReq);
char* pReq = (char*)rpcMallocCont(contLen);