By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2109
Collapse All | Expand All

(-)tdesu/process.cpp.orig (-2 / +7 lines)
Lines 492-499 Link Here
492
492
493
    while (1) 
493
    while (1) 
494
    {
494
    {
495
        FD_SET(m_Fd, &fds);
495
        int ret = 0;
496
        int ret = select(m_Fd+1, &fds, 0L, 0L, 0L);
496
497
        if (m_Fd != -1)
498
        {
499
            FD_SET(m_Fd, &fds);
500
            ret = select(m_Fd+1, &fds, 0L, 0L, 0L);
501
        }
497
        if (ret == -1) 
502
        if (ret == -1) 
498
        {
503
        {
499
            if (errno != EINTR) 
504
            if (errno != EINTR) 

Return to bug 2109