[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r2774 - in glibc-package/trunk/debian: . patches patches/any



Author: schizo
Date: 2008-01-11 14:47:37 +0000 (Fri, 11 Jan 2008)
New Revision: 2774

Added:
   glibc-package/trunk/debian/patches/any/cvs-sunrpc_rpc_thread.diff
Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/patches/series
Log:
  * patches/any/cvs-sunrpc_rpc_thread.diff: patch by Andr?\195?\169 Cruz to fix
    sunrpc memory leak.  closes: #460226.


Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2008-01-08 02:09:38 UTC (rev 2773)
+++ glibc-package/trunk/debian/changelog	2008-01-11 14:47:37 UTC (rev 2774)
@@ -20,6 +20,8 @@
 
   [ Clint Adams ]
   * debhelper.in/nscd.init: use lsb output functions.  Closes: #457661.
+  * patches/any/cvs-sunrpc_rpc_thread.diff: patch by André Cruz to fix
+    sunrpc memory leak.  closes: #460226.
 
   [ Samuel Thibault ]
   * patches/hurd-i386/submitted-extern_inline.diff new patch to fix extern

Added: glibc-package/trunk/debian/patches/any/cvs-sunrpc_rpc_thread.diff
===================================================================
--- glibc-package/trunk/debian/patches/any/cvs-sunrpc_rpc_thread.diff	                        (rev 0)
+++ glibc-package/trunk/debian/patches/any/cvs-sunrpc_rpc_thread.diff	2008-01-11 14:47:37 UTC (rev 2774)
@@ -0,0 +1,18 @@
+2008-01-09  Ulrich Drepper  <drepper@redhat.com>
+
+        [BZ #5541]
+        * sunrpc/rpc_thread.c (__rpc_thread_destroy): Also free xports and
+        pollfd structures.
+        Patch by André Cruz.
+
+--- a/sunrpc/rpc_thread.c
++++ b/sunrpc/rpc_thread.c
+@@ -29,6 +29,8 @@
+ 		free (tvp->svcraw_private_s);
+ 		free (tvp->authdes_cache_s);
+ 		free (tvp->authdes_lru_s);
++		free (tvp->svc_xports_s);
++		free (tvp->svc_pollfd_s);
+ 		if (tvp != &__libc_tsd_RPC_VARS_mem)
+ 			free (tvp);
+ 		__libc_tsd_set (RPC_VARS, NULL);

Modified: glibc-package/trunk/debian/patches/series
===================================================================
--- glibc-package/trunk/debian/patches/series	2008-01-08 02:09:38 UTC (rev 2773)
+++ glibc-package/trunk/debian/patches/series	2008-01-11 14:47:37 UTC (rev 2774)
@@ -127,6 +127,7 @@
 any/cvs-tzfile.diff -p1
 any/cvs-vfscanf.diff -p0
 any/cvs-wchar_h.diff -p0
+any/cvs-sunrpc_rpc_thread.diff
 any/local-notls.diff -p0
 any/local-asserth-decls.diff -p0
 any/local-bashisms.diff -p0


Reply to: