This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author neologix
Recipients baikie, loewis, neologix, pitrou, rosslagerwall, terry.reedy, vstinner
Date 2011-06-12.22:37:34
SpamBayes Score 0.0001391182
Marked as misclassified No
Message-id <1307918255.48.0.510314783448.issue8372@psf.upfronthosting.co.za>
In-reply-to
Content
The patches look good to me, except that instead of passing
(addrlen > buflen) ? buflen : addrlen

as addrlen argument every time makesockaddr is called, I'd prefer if this min was done inside makesockaddr itself, i.e. perform min(addrlen, sizeof(struct sockaddr_un)) in the AF_UNIX switch case (especially since addrlen is only used for AF_UNIX).
Also, this would be the occasion to put a short explanatory comment (possibility of non NULL-terminated sun_path and unreliable length returned by syscalls).
History
Date User Action Args
2011-06-12 22:37:35neologixsetrecipients: + neologix, loewis, terry.reedy, pitrou, vstinner, baikie, rosslagerwall
2011-06-12 22:37:35neologixsetmessageid: <1307918255.48.0.510314783448.issue8372@psf.upfronthosting.co.za>
2011-06-12 22:37:34neologixlinkissue8372 messages
2011-06-12 22:37:34neologixcreate