dwrite: Avoid wcsncpy().

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2021-05-04 21:18:55 +02:00
parent 60da2f877d
commit 4da6dc6384
1 changed files with 1 additions and 2 deletions

View File

@ -2649,8 +2649,7 @@ HRESULT opentype_get_font_facename(struct file_stream_desc *stream_desc, WCHAR *
{
*nameW = 0;
IDWriteLocalizedStrings_GetString(lfnames, index, nameW, length + 1);
wcsncpy(lfname, nameW, LF_FACESIZE);
lfname[LF_FACESIZE-1] = 0;
lstrcpynW(lfname, nameW, LF_FACESIZE);
heap_free(nameW);
}
}