统计信息输出字节数 在 90-140

超过128出现内存泄漏  问题暂未找到
直接使用256   (减少new 且直接了当)
This commit is contained in:
WangQiang 2016-06-23 03:01:03 +00:00
parent 57f0f66708
commit 2bc5d3ea15
1 changed files with 2 additions and 2 deletions

View File

@ -599,8 +599,8 @@ void StatTask(void* param)
TS("TokenController::ShowStat");
auto st = (TokenStat*)param;
char cs[128];
// 这里输出 字节数 在 90-140 为了减少 new 直接使用256
char cs[256];
String str(cs, ArrayLength(cs));
str.SetLength(0);
st->ToStr(str);