From 1f6a1abf7d0ba456858e55f4193927f06f04e41a Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 12 May 1995 16:40:34 +0000 Subject: (_hurd_alloc_fd): Don't reduce FIRST_FD in the case where it starts out less than _hurd_dtablesize. --- hurd/alloc-fd.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'hurd') diff --git a/hurd/alloc-fd.c b/hurd/alloc-fd.c index e83618ac4b..f21d5bb8e1 100644 --- a/hurd/alloc-fd.c +++ b/hurd/alloc-fd.c @@ -107,9 +107,10 @@ _hurd_alloc_fd (int *fd, int first_fd) { /* We managed to allocate a new table. Now install it. */ errno = save; - first_fd = _hurd_dtablesize; + if (first_fd < _hurd_dtablesize) + first_fd = _hurd_dtablesize; /* Initialize the new slots. */ - for (i = first_fd; i < size; ++i) + for (i = _hurd_dtablesize; i < size; ++i) new[i] = NULL; _hurd_dtablesize = size; _hurd_dtable = new; -- cgit 1.4.1