https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=173724
--- Comment #3 from Anton Lavrentiev <[email protected]> --- The bug was fixed in Cygwin (long time ago!) by moving the following comparison with -1 for inequality _inside_ this "if" in the semundo_clear() function. In the current FreeBSD source code it's still outside the if: if (semnum == -1 || sunptr->un_num == semnum) { ... + if (semnum != -1) + break; } - if (semnum != -1) - break; -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
