Content-Type: text/plain Content-Disposition: inline Content-Transfer-Encoding: binary MIME-Version: 1.0 X-Mailer: MIME-tools 5.427 (Entity 5.427) From: tlyu@mit.edu Subject: git commit RT-Send-CC: X-RT-Original-Encoding: iso-8859-1 Content-Length: 640 Fix bugs in bindresvport_sa() changes In svctcp_create() and svcudp_bufcreate(), set sa->sa_len on platforms where that field exists, so that a subsequent call to socklen() will return the correct result. To make the code more self-evidently correct, zero the entire struct sockaddr_storage object, using the memset(&ss, 0, sizeof(ss)) idiom. https://github.com/krb5/krb5/commit/158a551b14b017d232066c4a053dc608d87fa172 Author: Tom Yu Commit: 158a551b14b017d232066c4a053dc608d87fa172 Branch: master src/lib/rpc/svc_tcp.c | 5 ++++- src/lib/rpc/svc_udp.c | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-)