Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
e2dff986
...
e2dff986e890f397154ddfd51c7b94453fadba69
authored
2009-06-18 13:21:29 +0300
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bugfix
* mailbox/mutil.c (mu_fd_wait): Handle exceptions.
1 parent
44859c2a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mailbox/mutil.c
mailbox/mutil.c
View file @
e2dff98
...
...
@@ -1303,10 +1303,10 @@ mu_fd_wait (int fd, int *pflags, struct timeval *tvp)
if
(
tvp
)
{
struct
timeval
tv
=
*
tvp
;
rc
=
select
(
fd
+
1
,
&
rdset
,
&
wrset
,
NULL
,
&
tv
);
rc
=
select
(
fd
+
1
,
&
rdset
,
&
wrset
,
&
exset
,
&
tv
);
}
else
rc
=
select
(
fd
+
1
,
&
rdset
,
&
wrset
,
NULL
,
NULL
);
rc
=
select
(
fd
+
1
,
&
rdset
,
&
wrset
,
&
exset
,
NULL
);
}
while
(
rc
==
-
1
&&
errno
==
EINTR
);
...
...
Please
register
or
sign in
to post a comment