From b5c41a473b0611a97a876d8ee6fb9b532a3968a4 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Mon, 23 Oct 2000 12:31:54 +0000 Subject: [PATCH] Oops. A field like `sending_oob' in the Socket structure really deserves to be initialised to something sane at creation time. [originally from svn r748] --- winnet.c | 1 + 1 file changed, 1 insertion(+) diff --git a/winnet.c b/winnet.c index ad43853d..a81ae98d 100644 --- a/winnet.c +++ b/winnet.c @@ -101,6 +101,7 @@ Socket sk_new(SockAddr addr, int port, sk_receiver_t receiver) { ret->head = ret->tail = NULL; ret->writable = 1; /* to start with */ ret->in_oob = FALSE; + ret->sending_oob = 0; /* * Open socket. -- 2.45.2