mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 22:50:43 +00:00
ole32: Fix the character count passed to GetClipboardFormatNameW in WriteFmtUserTypeStg.
This commit is contained in:
parent
cedf6308aa
commit
96fafe1661
@ -7116,7 +7116,7 @@ HRESULT WINAPI WriteFmtUserTypeStg(
|
||||
TRACE("(%p,%x,%s)\n",pstg,cf,debugstr_w(lpszUserType));
|
||||
|
||||
/* get the clipboard format name */
|
||||
n = GetClipboardFormatNameW( cf, szwClipName, sizeof(szwClipName) );
|
||||
n = GetClipboardFormatNameW( cf, szwClipName, sizeof(szwClipName)/sizeof(szwClipName[0]) );
|
||||
szwClipName[n]=0;
|
||||
|
||||
TRACE("Clipboard name is %s\n", debugstr_w(szwClipName));
|
||||
|
Loading…
Reference in New Issue
Block a user