Remove call to Buf_Init

This commit is contained in:
twinaphex 2015-12-02 01:16:08 +01:00
parent 47b934b563
commit 1f78455274

View File

@ -92,7 +92,9 @@ static bool ConvertUtf16toCharString(const uint16_t *in, char *s, size_t len)
CBuf dest;
bool ret;
Buf_Init(&dest);
dest.data = 0;
dest.size = 0;
ret = Utf16_To_Char(&dest, in, 0);
if (ret)