about summary refs log tree commit diff
path: root/sysdeps/mach/hurd/fork.c
diff options
context:
space:
mode:
authorRoland McGrath <mcgrathr@chromium.org>2011-09-08 09:37:42 -0700
committerRoland McGrath <mcgrathr@chromium.org>2011-09-08 09:37:42 -0700
commit7f513ec8b3cd7816a897052bd472c0bfd553e910 (patch)
treedae1f71556edba5057b639a5cd1b1f200f666b31 /sysdeps/mach/hurd/fork.c
parent610f9ab43eb24b8e94d0067d2c785ab4fdc411dc (diff)
downloadglibc-7f513ec8b3cd7816a897052bd472c0bfd553e910.tar.gz
glibc-7f513ec8b3cd7816a897052bd472c0bfd553e910.tar.xz
glibc-7f513ec8b3cd7816a897052bd472c0bfd553e910.zip
Hurd: fix use of uninitialized value in fork port copying.
Diffstat (limited to 'sysdeps/mach/hurd/fork.c')
-rw-r--r--sysdeps/mach/hurd/fork.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/fork.c b/sysdeps/mach/hurd/fork.c
index 3288f186e5..66fa7e27bc 100644
--- a/sysdeps/mach/hurd/fork.c
+++ b/sysdeps/mach/hurd/fork.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1994,1995,1996,1997,1999,2001,2002,2004,2005,2006
+/* Copyright (C) 1994,1995,1996,1997,1999,2001,2002,2004,2005,2006,2011
 	Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
@@ -313,7 +313,7 @@ __fork (void)
 	    {
 	      /* This is a send right or a dead name.
 		 Give the child as many references for it as we have.  */
-	      mach_port_urefs_t refs, *record_refs = NULL;
+	      mach_port_urefs_t refs = 0, *record_refs = NULL;
 	      mach_port_t insert;
 	      mach_msg_type_name_t insert_type = MACH_MSG_TYPE_COPY_SEND;
 	      if (portnames[i] == newtask || portnames[i] == newproc)