Make cesu work

This commit is contained in:
Aoran Zeng
2023-09-02 22:23:49 +08:00
parent 2c62dedd5c
commit 1d34248a1e
3 changed files with 14 additions and 22 deletions

View File

@@ -176,7 +176,7 @@ xy_2strjoin (const char* str1, const char* str2)
static char*
xy_strjoin (unsigned int count, ...)
{
size_t al_fixed = 128;
size_t al_fixed = 256;
char* ret = calloc(1, al_fixed);
// 已分配次数
int al_times = 1;