Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 442122 | Differences between
and this patch

Collapse All | Expand All

(-)mozplugger-2.1.3/mozplugger-helper.c~ (-1 / +1 lines)
Lines 1532-1538 Link Here
1532
               {
1532
               {
1533
                    handle_SIGCHLD_event();
1533
                    handle_SIGCHLD_event();
1534
               }
1534
               }
1535
               if( FD_ISSET(rd_chld_fd, &fds))
1535
               if( rd_chld_fd >= 0 && FD_ISSET(rd_chld_fd, &fds))
1536
               {
1536
               {
1537
                    handle_chld_out_event(rd_chld_fd);
1537
                    handle_chld_out_event(rd_chld_fd);
1538
               }
1538
               }
(-)mozplugger-2.1.3/mozplugger-controller.c~ (-1 / +1 lines)
Lines 791-797 Link Here
791
               {
791
               {
792
                    handle_SIGCHLD_event();
792
                    handle_SIGCHLD_event();
793
               }
793
               }
794
               if( FD_ISSET(rd_chld_fd, &fds))
794
               if( rd_chld_fd >= 0 && FD_ISSET(rd_chld_fd, &fds))
795
               {
795
               {
796
                    handle_chld_out_event(rd_chld_fd);
796
                    handle_chld_out_event(rd_chld_fd);
797
               }
797
               }
(-)mozplugger-2.1.3/mozplugger-linker.c~ (-1 / +1 lines)
Lines 633-639 Link Here
633
               {
633
               {
634
                    handle_SIGCHLD_event();
634
                    handle_SIGCHLD_event();
635
               }
635
               }
636
               if( FD_ISSET(rd_chld_fd, &fds))
636
               if( rd_chld_fd >= 0 && FD_ISSET(rd_chld_fd, &fds))
637
               {
637
               {
638
                    handle_chld_out_event(rd_chld_fd);
638
                    handle_chld_out_event(rd_chld_fd);
639
               }
639
               }

Return to bug 442122