Fixed an infinite loop in ChildWindowFromPointEx.

This commit is contained in:
Francis Beaudet 1999-05-13 18:43:15 +00:00 committed by Alexandre Julliard
parent 4925186bb2
commit d9a3d70df5

View File

@ -627,9 +627,9 @@ HWND WINAPI ChildWindowFromPointEx( HWND hwndParent, POINT pt,
retvalue = wnd->hwndSelf; retvalue = wnd->hwndSelf;
goto end; goto end;
} }
WIN_UpdateWndPtr(&wnd,wnd->next);
} }
WIN_UpdateWndPtr(&wnd,wnd->next);
} }
retvalue = hwndParent; retvalue = hwndParent;
end: end: