https://bugzilla.mindrot.org/show_bug.cgi?id=3049
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|FIXED |--- Status|RESOLVED |REOPENED --- Comment #10 from [email protected] --- (In reply to Damien Miller from comment #9) > patch applied and will be in OpenSSH 8.1 - thanks! Hi Damien, thanks for the patch. Sorry I didn't reply earlier, in the patch, there are a few problems I can observe here: `if (r < 0 || r >= sz)`: it should be `if (r < 0 || r > sz)` because `r==sz` is still valid. `sz / (int)PROC_PIDLISTFD_SIZE` should be changed to `r / (int)PROC_PIDLISTFD_SIZE` because entries between r and sz are invalid. These are not anything urgent but it's nice to fix them. -- You are receiving this mail because: You are watching someone on the CC list of the bug. You are watching the assignee of the bug. _______________________________________________ openssh-bugs mailing list [email protected] https://lists.mindrot.org/mailman/listinfo/openssh-bugs
