Fix lock up when not using a session manager and doing fd management.

This commit is contained in:
Scott Moynes 2003-08-07 17:06:12 +00:00
parent f50c2bc2a3
commit 164a095375

View file

@ -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
} }