summaryrefslogtreecommitdiff
path: root/login/forkpty.c
diff options
context:
space:
mode:
Diffstat (limited to 'login/forkpty.c')
-rw-r--r--login/forkpty.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/login/forkpty.c b/login/forkpty.c
index ff87fd031d..ccd5dbfe0e 100644
--- a/login/forkpty.c
+++ b/login/forkpty.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998 Free Software Foundation, Inc.
+/* Copyright (C) 1998, 2007 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Zack Weinberg <zack@rabi.phys.columbia.edu>, 1998.
@@ -38,6 +38,8 @@ forkpty (amaster, name, termp, winp)
switch (pid = fork ())
{
case -1:
+ close (master);
+ close (slave);
return -1;
case 0:
/* Child. */