Author: sthibault Date: 2011-09-08 13:32:09 +0000 (Thu, 08 Sep 2011) New Revision: 4959
Modified: glibc-package/trunk/debian/changelog glibc-package/trunk/debian/patches/hurd-i386/unsubmitted-tls-support.diff Log: patches/hurd-i386/unsubmitted-tls-support.diff: Fix port leak in fork(). Modified: glibc-package/trunk/debian/changelog =================================================================== --- glibc-package/trunk/debian/changelog 2011-09-08 10:37:07 UTC (rev 4958) +++ glibc-package/trunk/debian/changelog 2011-09-08 13:32:09 UTC (rev 4959) @@ -1,8 +1,9 @@ eglibc (2.13-21) UNRELEASED; urgency=low - * + [ Samuel Thibault ] + * patches/hurd-i386/unsubmitted-tls-support.diff: Fix port leak in fork(). - -- Aurelien Jarno <[email protected]> Thu, 08 Sep 2011 12:05:26 +0200 + -- Samuel Thibault <[email protected]> Thu, 08 Sep 2011 15:31:05 +0200 eglibc (2.13-20) unstable; urgency=low Modified: glibc-package/trunk/debian/patches/hurd-i386/unsubmitted-tls-support.diff =================================================================== --- glibc-package/trunk/debian/patches/hurd-i386/unsubmitted-tls-support.diff 2011-09-08 10:37:07 UTC (rev 4958) +++ glibc-package/trunk/debian/patches/hurd-i386/unsubmitted-tls-support.diff 2011-09-08 13:32:09 UTC (rev 4959) @@ -205,7 +205,7 @@ /* Do special thread setup for TLS if needed. */ - if (err = _hurd_tls_fork (thread, &state)) -+ if (err = _hurd_tls_fork (thread, __mach_thread_self (), &state)) ++ if (err = _hurd_tls_fork (thread, ss->thread, &state)) LOSE; if (err = __thread_set_state (thread, MACHINE_THREAD_STATE_FLAVOR, -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: http://lists.debian.org/[email protected]

