From 081e9da6e83a4c2f00b31fa9c9284e4cafa80e74 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Wed, 19 Dec 2012 22:07:14 +0000 Subject: [PATCH] Add missing file. --- winsup/cygwin/select.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/winsup/cygwin/select.h b/winsup/cygwin/select.h index fe0c206d5..f9df95d93 100644 --- a/winsup/cygwin/select.h +++ b/winsup/cygwin/select.h @@ -30,8 +30,8 @@ struct select_record struct select_record *next; void set_select_errno () {__seterrno (); thread_errno = errno;} int saw_error () {return thread_errno;} - select_record () {} - select_record (int): fd (0), h (NULL), fh (NULL), thread_errno (0), + select_record (int): next (NULL) {} + select_record (): fd (0), h (NULL), fh (NULL), thread_errno (0), windows_handle (false), read_ready (false), write_ready (false), except_ready (false), read_selected (false), write_selected (false), except_selected (false), except_on_write (false),