patches/glibc/ports-2.13/660-debug-readlink_chk-readklinkat_chk.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue May 03 00:19:56 2011 +0200 (2011-05-03)
changeset 2438 2ba5655f6297
permissions -rw-r--r--
libc/glibc: add 2.13

Patchset provided by "Ioannis E. Venetis" <venetis@mail.capsl.udel.edu>
http://sourceware.org/ml/crossgcc/2011-04/msg00072.html
http://sourceware.org/ml/crossgcc/2011-04/msg00073.html

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     1 diff -dur glibc-cvs-2.9.orig/debug/readlink_chk.c glibc-cvs-2.9/debug/readlink_chk.c
     2 --- glibc-cvs-2.9.orig/debug/readlink_chk.c	2005-03-01 01:41:15.000000000 +0100
     3 +++ glibc-cvs-2.9/debug/readlink_chk.c	2009-06-01 10:59:37.000000000 +0200
     4 @@ -25,7 +25,7 @@
     5  
     6  
     7  ssize_t
     8 -__readlink_chk (const char *path, void *buf, size_t len, size_t buflen)
     9 +__readlink_chk (const char *path, char *buf, size_t len, size_t buflen)
    10  {
    11    if (len > buflen)
    12      __chk_fail ();
    13 diff -dur glibc-cvs-2.9.orig/debug/readlinkat_chk.c glibc-cvs-2.9/debug/readlinkat_chk.c
    14 --- glibc-cvs-2.9.orig/debug/readlinkat_chk.c	2006-04-24 18:56:12.000000000 +0200
    15 +++ glibc-cvs-2.9/debug/readlinkat_chk.c	2009-06-01 11:07:26.000000000 +0200
    16 @@ -21,7 +21,7 @@
    17  
    18  
    19  ssize_t
    20 -__readlinkat_chk (int fd, const char *path, void *buf, size_t len,
    21 +__readlinkat_chk (int fd, const char *path, char *buf, size_t len,
    22  		  size_t buflen)
    23  {
    24    if (len > buflen)