user32: When calling TrackMouseEvent with TME_LEAVE the dwHoverTime may be uninitialized.

This commit is contained in:
Mikołaj Zalewski 2006-10-14 20:16:30 +02:00 committed by Alexandre Julliard
parent e302fcfff4
commit ce2b767f6a
1 changed files with 3 additions and 2 deletions

View File

@ -921,8 +921,9 @@ TrackMouseEvent (TRACKMOUSEEVENT *ptme)
hover_time = ptme->dwHoverTime; hover_time = ptme->dwHoverTime;
/* if HOVER_DEFAULT was specified replace this with the systems current value */ /* if HOVER_DEFAULT was specified replace this with the systems current value.
if (hover_time == HOVER_DEFAULT || hover_time == 0) * TME_LEAVE doesn't need to specify hover time so use default */
if (hover_time == HOVER_DEFAULT || hover_time == 0 || !(ptme->dwHoverTime&TME_HOVER))
SystemParametersInfoW(SPI_GETMOUSEHOVERTIME, 0, &hover_time, 0); SystemParametersInfoW(SPI_GETMOUSEHOVERTIME, 0, &hover_time, 0);
GetCursorPos(&pos); GetCursorPos(&pos);