Skip to content
Snippets Groups Projects
Commit d9a3d70d authored by Francis Beaudet's avatar Francis Beaudet Committed by Alexandre Julliard
Browse files

Fixed an infinite loop in ChildWindowFromPointEx.

parent 4925186b
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment