Hi Andrey,

thank you for the report and patch, I´ve created https://github.com/FreeRDP/FreeRDP/issues/5889 for the time being and will create a patch from that as soon as I have completed my current task.

regards
Armin

On 18.02.20 06:12, Andrey Vasilkin via FreeRDP-devel wrote:
#ifdef 1
/*
     My modifications.
*/
             if (Object->Mode & WINPR_FD_READ)
             {
                 FD_SET(fd, &rfds);
                 prfds = &rfds;
             }
             if (Object->Mode & WINPR_FD_WRITE)
             {
                 FD_SET(fd, &wfds);
                 pwfds = &wfds;
             }
#else
/*
     Original.
*/
             FD_SET(fd, &rfds);
             FD_SET(fd, &wfds);

             if (Object->Mode & WINPR_FD_READ)
                 prfds = &rfds;

             if (Object->Mode & WINPR_FD_WRITE)
                 pwfds = &wfds;
#endif


_______________________________________________
FreeRDP-devel mailing list
FreeRDP-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freerdp-devel

Reply via email to