wordpad: Added a null terminator needed for a unicode string.

oldstable
Dylan Smith 2008-05-27 16:40:13 -04:00 committed by Alexandre Julliard
parent 4a9adfa04c
commit 76f2a0f333
1 changed files with 1 additions and 1 deletions

View File

@ -1200,7 +1200,7 @@ static int current_units_to_twips(float number)
static void append_current_units(LPWSTR buffer)
{
static const WCHAR space[] = {' '};
static const WCHAR space[] = {' ', 0};
lstrcatW(buffer, space);
lstrcatW(buffer, units_cmW);
}