crosstool-ng/packages/glibc/2.13/0036-debug-readlink_chk-readklinkat_chk.patch
Alexey Neyman 98bc4decde Run all patches through renumbering and update
Signed-off-by: Alexey Neyman <stilor@att.net>
2017-12-02 12:44:39 -08:00

28 lines
667 B
Diff

---
debug/readlink_chk.c | 2 +-
debug/readlinkat_chk.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
--- a/debug/readlink_chk.c
+++ b/debug/readlink_chk.c
@@ -25,7 +25,7 @@
ssize_t
-__readlink_chk (const char *path, void *buf, size_t len, size_t buflen)
+__readlink_chk (const char *path, char *buf, size_t len, size_t buflen)
{
if (len > buflen)
__chk_fail ();
--- a/debug/readlinkat_chk.c
+++ b/debug/readlinkat_chk.c
@@ -21,7 +21,7 @@
ssize_t
-__readlinkat_chk (int fd, const char *path, void *buf, size_t len,
+__readlinkat_chk (int fd, const char *path, char *buf, size_t len,
size_t buflen)
{
if (len > buflen)