Fix lock up when not using a session manager and doing fd management.
This commit is contained in:
parent
f50c2bc2a3
commit
164a095375
1 changed files with 1 additions and 1 deletions
|
@ -1144,7 +1144,7 @@ static void find_max_fd()
|
||||||
(gpointer)&tmpmax);
|
(gpointer)&tmpmax);
|
||||||
max_fd = MAX(x_fd, tmpmax);
|
max_fd = MAX(x_fd, tmpmax);
|
||||||
#ifdef USE_SM
|
#ifdef USE_SM
|
||||||
max_fd = MAX(ice_fd, tmpmax);
|
max_fd = MAX(ice_fd, max_fd);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue