about summary refs log tree commit diff
path: root/sysdeps/unix
diff options
context:
space:
mode:
authorArjun Shankar <arjun.is@lostca.se>2017-05-29 16:12:31 +0200
committerArjun Shankar <arjun.is@lostca.se>2017-06-07 17:37:59 +0200
commit8f0a947cf55f3b0c4ebdf06953c57eff67a22fa9 (patch)
treeac419833fa9448098b94cf678db893520c6f5837 /sysdeps/unix
parentfdc543919a3d8578631a492e1227c2cd8f5ecec7 (diff)
downloadglibc-8f0a947cf55f3b0c4ebdf06953c57eff67a22fa9.tar.gz
glibc-8f0a947cf55f3b0c4ebdf06953c57eff67a22fa9.tar.xz
glibc-8f0a947cf55f3b0c4ebdf06953c57eff67a22fa9.zip
Remove check for NULL buffer passed to `ptsname_r'
`ptsname_r' is declared in stdlib.h to only accept a `nonnull'
second argument and therefore GCC may choose to make optimizations
based on the assumption that this argument is NULL. This means
that potentially, GCC can optimize away the NULL check at some
point in the future. Since this is a programming interface, we
might as well remove the NULL check ourselves.

This also warrants a change to the `ptsname_r' manual page that
must be submitted to the corresponding mailing list.

In addition, remove the NULL buffer test in login/tst-ptsname.c.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r--sysdeps/unix/sysv/linux/ptsname.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/sysdeps/unix/sysv/linux/ptsname.c b/sysdeps/unix/sysv/linux/ptsname.c
index e3f2ae8ff2..41bb0bbb0e 100644
--- a/sysdeps/unix/sysv/linux/ptsname.c
+++ b/sysdeps/unix/sysv/linux/ptsname.c
@@ -72,12 +72,6 @@ __ptsname_internal (int fd, char *buf, size_t buflen, struct stat64 *stp)
   int save_errno = errno;
   unsigned int ptyno;
 
-  if (buf == NULL)
-    {
-      __set_errno (EINVAL);
-      return EINVAL;
-    }
-
   if (!__isatty (fd))
     {
       __set_errno (ENOTTY);