mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-03 04:22:47 -05:00
Minor improvements to subsidiary window placement; with any luck the
Event Log should go off the side of the screen rather less often now. [originally from svn r3088]
This commit is contained in:
11
unix/uxsel.c
11
unix/uxsel.c
@ -115,6 +115,13 @@ int first_fd(int *state, int *rwx)
|
||||
int select_result(int fd, int event)
|
||||
{
|
||||
struct fd *fdstruct = find234(fds, &fd, uxsel_fd_findcmp);
|
||||
assert(fdstruct != NULL);
|
||||
return fdstruct->callback(fd, event);
|
||||
/*
|
||||
* Apparently this can sometimes be NULL. Can't see how, but I
|
||||
* assume it means I need to ignore the event since it's on an
|
||||
* fd I've stopped being interested in. Sigh.
|
||||
*/
|
||||
if (fdstruct)
|
||||
return fdstruct->callback(fd, event);
|
||||
else
|
||||
return 1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user