mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 21:03:12 +00:00
Eliminate usage of __mb_cur_max, try to fix Linux build
This commit is contained in:
parent
c5031c2b39
commit
87baa4d3d2
1 changed files with 2 additions and 4 deletions
|
@ -302,8 +302,7 @@ std::string wcs2string(const wcstring &input)
|
|||
mbstate_t state;
|
||||
memset(&state, 0, sizeof(state));
|
||||
|
||||
size_t converted_max_len = (size_t)(1 + __mb_cur_max);
|
||||
char *converted = new char[converted_max_len];
|
||||
char converted[MB_LEN_MAX + 1];
|
||||
|
||||
for (size_t i=0; i < input.size(); i++)
|
||||
{
|
||||
|
@ -318,7 +317,7 @@ std::string wcs2string(const wcstring &input)
|
|||
}
|
||||
else
|
||||
{
|
||||
bzero(converted, converted_max_len);
|
||||
bzero(converted, sizeof converted);
|
||||
size_t len = wcrtomb(converted, wc, &state);
|
||||
if (len == (size_t)(-1))
|
||||
{
|
||||
|
@ -332,7 +331,6 @@ std::string wcs2string(const wcstring &input)
|
|||
}
|
||||
}
|
||||
|
||||
delete [] converted;
|
||||
return result;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue