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
1 changed files with 1 additions and 1 deletions

View File

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