From b3363b6ba57a3b9f68afca49ecf3267598f71e59 Mon Sep 17 00:00:00 2001 From: miod Date: Sat, 19 Jul 2014 18:11:12 +0000 Subject: [PATCH] Make sure struct sockaddr_in gets completely initialized by setting it to zero before setting the few fields we are interested in; Doug Hogan --- regress/sys/kern/rcvtimeo/rcvtimeo.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/regress/sys/kern/rcvtimeo/rcvtimeo.c b/regress/sys/kern/rcvtimeo/rcvtimeo.c index 2dcb00fe947..72d22835852 100644 --- a/regress/sys/kern/rcvtimeo/rcvtimeo.c +++ b/regress/sys/kern/rcvtimeo/rcvtimeo.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcvtimeo.c,v 1.4 2003/09/02 23:52:17 david Exp $ */ +/* $OpenBSD: rcvtimeo.c,v 1.5 2014/07/19 18:11:12 miod Exp $ */ /* Written by Michael Shalayeff, 2002, Public Domain */ @@ -11,6 +11,7 @@ #include #include #include +#include #include #include @@ -40,6 +41,7 @@ main(int argc, char *argv[]) if ((s = socket(AF_INET, SOCK_DGRAM, 0)) < 0) err(1, "socket"); + memset(&sin, 0, sizeof(sin)); sin.sin_len = sizeof(sin); sin.sin_family = AF_INET; sin.sin_port = htons(30000); /* XXX assuming nothing is there */ -- 2.20.1