]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix off-by-one in nscd getservbyport call
authorAndreas Schwab <schwab@suse.de>
Mon, 11 Nov 2013 11:24:42 +0000 (12:24 +0100)
committerAndreas Schwab <schwab@suse.de>
Mon, 11 Nov 2013 11:26:32 +0000 (12:26 +0100)
ChangeLog
NEWS
nscd/nscd_getserv_r.c

index b70b51adb446f16cac7f32b46d9320c52cb99408..a35541e0e0a3e1c2422ba76dda4caa1fe744010b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-11-11  Andreas Schwab  <schwab@suse.de>
+
+       [BZ #16153]
+       * nscd/nscd_getserv_r.c (__nscd_getservbyport_r): Don't include
+       terminating NUL in key length.
+
 2013-11-08  Adhemerval Zanella  <azanella@linux.vnet.ibm.com>
 
        * sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h (VDSO_IFUNC_RET):
diff --git a/NEWS b/NEWS
index 6a727246ac2b94b99eb071598f30f83c9f72cd11..e92f5fc17bc9adc4f7dd08d780416f0434f2ebd8 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -17,7 +17,7 @@ Version 2.19
   15844, 15847, 15849, 15855, 15856, 15857, 15859, 15867, 15886, 15887,
   15890, 15892, 15893, 15895, 15897, 15905, 15909, 15917, 15919, 15921,
   15923, 15939, 15948, 15963, 15966, 15985, 15988, 16032, 16034, 16036,
-  16037, 16041, 16071, 16072, 16074, 16078, 16112.
+  16037, 16041, 16071, 16072, 16074, 16078, 16112, 16153.
 
 * CVE-2012-4412 The strcoll implementation caches indices and rules for
   large collation sequences to optimize multiple passes.  This cache
index c9c890c63cd0158acdd263f2fcbacf15fa10daf9..772825854dd21d73912e9b5d68cf9a1fe0cc2165 100644 (file)
@@ -54,7 +54,7 @@ __nscd_getservbyport_r (int port, const char *proto,
   portstr[sizeof (portstr) - 1] = '\0';
   char *cp = _itoa_word (port, portstr + sizeof (portstr) - 1, 10, 0);
 
-  return nscd_getserv_r (cp, portstr + sizeof (portstr) - cp, proto,
+  return nscd_getserv_r (cp, portstr + sizeof (portstr) - 1 - cp, proto,
                         GETSERVBYPORT, result_buf, buf, buflen, result);
 }