about summary refs log tree commit diff
path: root/debug
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2018-08-21 11:24:12 +0200
committerFlorian Weimer <fweimer@redhat.com>2018-08-21 11:24:12 +0200
commitef939d928a5b9f2d9b103b16cb7acc1d2fbcbb80 (patch)
tree0f6874cd41d4de6c64f010c1fffebc8526e43d1c /debug
parent88ffb39dc664bfec391c4d927f8c2145141bb7f0 (diff)
downloadglibc-ef939d928a5b9f2d9b103b16cb7acc1d2fbcbb80.tar.gz
glibc-ef939d928a5b9f2d9b103b16cb7acc1d2fbcbb80.tar.xz
glibc-ef939d928a5b9f2d9b103b16cb7acc1d2fbcbb80.zip
__readlink_chk: Remove micro-optimization
Diffstat (limited to 'debug')
-rw-r--r--debug/readlink_chk.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/debug/readlink_chk.c b/debug/readlink_chk.c
index c44d1d8c37..e3204004d2 100644
--- a/debug/readlink_chk.c
+++ b/debug/readlink_chk.c
@@ -29,9 +29,5 @@ __readlink_chk (const char *path, void *buf, size_t len, size_t buflen)
   if (len > buflen)
     __chk_fail ();
 
-#ifdef HAVE_INLINED_SYSCALLS
-  return INLINE_SYSCALL (readlink, 3, path, buf, len);
-#else
   return __readlink (path, buf, len);
-#endif
 }