mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 13:10:28 +00:00
winhelp: Remove extraneous positiveness check for unsigned variable in WINHELP_HandleTextMouse().
This commit is contained in:
parent
6d91fd8ce6
commit
49799ccb01
@ -782,7 +782,7 @@ static BOOL WINHELP_HandleTextMouse(WINHELP_WINDOW* win, UINT msg, LPARAM lParam
|
||||
{
|
||||
if (link->window == -1)
|
||||
wi = win->info;
|
||||
else if ((link->window >= 0) && (link->window < hlpfile->numWindows))
|
||||
else if (link->window < hlpfile->numWindows)
|
||||
wi = &hlpfile->windows[link->window];
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user