mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 05:00:30 +00:00
Guard against incoming string of NULL in WM_SETTEXT.
This commit is contained in:
parent
0b47b289a8
commit
f3ea345b2d
@ -4467,11 +4467,11 @@ static void EDIT_WM_SetFont(WND *wnd, EDITSTATE *es, HFONT font, BOOL redraw)
|
||||
*/
|
||||
static void EDIT_WM_SetText(WND *wnd, EDITSTATE *es, LPARAM lParam, BOOL unicode)
|
||||
{
|
||||
LPWSTR text;
|
||||
LPWSTR text = NULL;
|
||||
|
||||
if(unicode)
|
||||
text = (LPWSTR)lParam;
|
||||
else
|
||||
else if (lParam)
|
||||
{
|
||||
LPCSTR textA = (LPCSTR)lParam;
|
||||
INT countW = MultiByteToWideChar(CP_ACP, 0, textA, -1, NULL, 0);
|
||||
|
Loading…
Reference in New Issue
Block a user