Commit dc0a49f3 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

credui: Use SetRectEmpty() instead of memset().

parent 986a14f9
......@@ -216,7 +216,7 @@ static void CredDialogCreateBalloonTip(HWND hwndDlg, struct cred_dialog_params *
toolinfo.uFlags = TTF_TRACK;
toolinfo.hwnd = hwndDlg;
toolinfo.uId = TOOLID_INCORRECTPASSWORD;
memset(&toolinfo.rect, 0, sizeof(toolinfo.rect));
SetRectEmpty(&toolinfo.rect);
toolinfo.hinst = NULL;
toolinfo.lpszText = wszText;
toolinfo.lParam = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment