mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:43:31 +00:00
wmc: inputbuffer is a WCHAR array.
This commit is contained in:
parent
c8bcbdb90d
commit
c053bdb54a
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ static int fill_inputbuffer(void)
|
|||
|
||||
if(!inputbuffer)
|
||||
{
|
||||
inputbuffer = xmalloc(INPUTBUFFER_SIZE);
|
||||
inputbuffer = xmalloc(INPUTBUFFER_SIZE*sizeof(WCHAR));
|
||||
xlatebuffer = xmalloc(INPUTBUFFER_SIZE);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue