- Since this is hiding the cursor, no window, just return. See CORE-9723.

svn path=/trunk/; revision=67856
This commit is contained in:
James Tabor 2015-05-23 04:43:32 +00:00
parent f0ffcaf0c8
commit ba9580261a

View file

@ -23,6 +23,12 @@ co_IntDrawCaret(PWND pWnd, PTHRDCARETINFO CaretInfo)
HBITMAP hbmOld;
BOOL bDone = FALSE;
if (pWnd == NULL)
{
TRACE("Null Window!\n");
return;
}
hdc = UserGetDCEx(pWnd, 0, DCX_USESTYLE | DCX_WINDOW);
if (!hdc)
{