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

r6227 - in glibc-package/branches/glibc-branch-wheezy/debian: . patches patches/any



Author: aurel32
Date: 2014-08-14 13:04:35 +0000 (Thu, 14 Aug 2014)
New Revision: 6227

Added:
   glibc-package/branches/glibc-branch-wheezy/debian/patches/any/cvs-resolv-reuse-fd.diff
Modified:
   glibc-package/branches/glibc-branch-wheezy/debian/changelog
   glibc-package/branches/glibc-branch-wheezy/debian/patches/series
Log:
debian/patches/any/cvs-resolv-reuse-fd.diff: new patch from upstream
to fix invalid file descriptor reuse while sending DNS query.  Closes:
#722075, #756343.

Modified: glibc-package/branches/glibc-branch-wheezy/debian/changelog
===================================================================
--- glibc-package/branches/glibc-branch-wheezy/debian/changelog	2014-08-14 12:57:46 UTC (rev 6226)
+++ glibc-package/branches/glibc-branch-wheezy/debian/changelog	2014-08-14 13:04:35 UTC (rev 6227)
@@ -1,3 +1,11 @@
+eglibc (2.13-38+deb7u4) UNRELEASED; urgency=medium
+
+  * debian/patches/any/cvs-resolv-reuse-fd.diff: new patch from upstream
+    to fix invalid file descriptor reuse while sending DNS query.  Closes:
+    #722075, #756343.
+
+ -- Aurelien Jarno <aurel32@debian.org>  Thu, 14 Aug 2014 15:00:43 +0200
+
 eglibc (2.13-38+deb7u3) wheezy-security; urgency=high
 
   * debian/patches/any/submitted-CVE-2014-0475.diff: setlocale security fix.

Added: glibc-package/branches/glibc-branch-wheezy/debian/patches/any/cvs-resolv-reuse-fd.diff
===================================================================
--- glibc-package/branches/glibc-branch-wheezy/debian/patches/any/cvs-resolv-reuse-fd.diff	                        (rev 0)
+++ glibc-package/branches/glibc-branch-wheezy/debian/patches/any/cvs-resolv-reuse-fd.diff	2014-08-14 13:04:35 UTC (rev 6227)
@@ -0,0 +1,16 @@
+2014-06-03  Andreas Schwab  <schwab@suse.de>
+
+	[BZ #15946]
+	* resolv/res_send.c (send_dg): Reload file descriptor after
+	calling reopen.
+
+--- a/resolv/res_send.c
++++ b/resolv/res_send.c
+@@ -1410,6 +1410,7 @@ send_dg(res_state statp,
+ 					retval = reopen (statp, terrno, ns);
+ 					if (retval <= 0)
+ 						return retval;
++					pfd[0].fd = EXT(statp).nssocks[ns];
+ 				}
+ 			}
+ 			goto wait;

Modified: glibc-package/branches/glibc-branch-wheezy/debian/patches/series
===================================================================
--- glibc-package/branches/glibc-branch-wheezy/debian/patches/series	2014-08-14 12:57:46 UTC (rev 6226)
+++ glibc-package/branches/glibc-branch-wheezy/debian/patches/series	2014-08-14 13:04:35 UTC (rev 6227)
@@ -390,3 +390,4 @@
 any/cvs-socketcall-syscall.diff
 any/submitted-setlocale-alloca.diff
 any/submitted-CVE-2014-0475.diff
+any/cvs-resolv-reuse-fd.diff


Reply to: