修改编译错误。

This commit is contained in:
zhengchao
2018-10-29 15:17:11 +08:00
parent 211031c9a3
commit fd0c9ce6c2
3 changed files with 5 additions and 4 deletions

View File

@@ -1840,8 +1840,8 @@ static char* parse_alpn_extension(const unsigned char* buff, size_t buff_len, en
*result = CHELLO_PARSE_INVALID_FORMAT;
return NULL;
}
char* alpn = (char*)malloc(len + 1);
strncpy(alpn, (const char*)buff + 2, len);
char* alpn = ALLOC(char, len + 1);
strncpy((char*)alpn, (const char*)buff + 2, len);
alpn[len] = '\0';
*result = CHELLO_PARSE_SUCCESS;
return alpn;