mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 11:26:10 +00:00
wordpad: Added a null terminator needed for a unicode string.
This commit is contained in:
parent
4a9adfa04c
commit
76f2a0f333
1 changed files with 1 additions and 1 deletions
|
@ -1200,7 +1200,7 @@ static int current_units_to_twips(float number)
|
||||||
|
|
||||||
static void append_current_units(LPWSTR buffer)
|
static void append_current_units(LPWSTR buffer)
|
||||||
{
|
{
|
||||||
static const WCHAR space[] = {' '};
|
static const WCHAR space[] = {' ', 0};
|
||||||
lstrcatW(buffer, space);
|
lstrcatW(buffer, space);
|
||||||
lstrcatW(buffer, units_cmW);
|
lstrcatW(buffer, units_cmW);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue