diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-10-29 21:33:26 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-10-29 21:33:26 -0700 |
commit | 801720e63b20e3b8215764ff0d68a29534ca7e62 (patch) | |
tree | b855ff7b284eadc784013c078f54978464687243 /sysdeps/unix/sysv/linux/powerpc | |
parent | 584715c3a9b0030729e0a8504c820b3bd8d9353d (diff) | |
download | glibc-801720e63b20e3b8215764ff0d68a29534ca7e62.tar.gz glibc-801720e63b20e3b8215764ff0d68a29534ca7e62.tar.xz glibc-801720e63b20e3b8215764ff0d68a29534ca7e62.zip |
Fix compat handling in *at functions.
When passed an empty string for the filename, the compat code using /proc in all *at functions did the wrong thing.
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc')
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/fchownat.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/fchownat.c b/sysdeps/unix/sysv/linux/powerpc/fchownat.c index 67c570648a..46f6d97c6b 100644 --- a/sysdeps/unix/sysv/linux/powerpc/fchownat.c +++ b/sysdeps/unix/sysv/linux/powerpc/fchownat.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2005, 2006 Free Software Foundation, Inc. +/* Copyright (C) 2005, 2006, 2009 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -66,6 +66,12 @@ fchownat (int fd, const char *file, uid_t owner, gid_t group, int flag) if (fd != AT_FDCWD && file[0] != '/') { size_t filelen = strlen (file); + if (__builtin_expect (filelen == 0, 0)) + { + __set_errno (ENOENT); + return -1; + } + static const char procfd[] = "/proc/self/fd/%d/%s"; /* Buffer for the path name we are going to use. It consists of - the string /proc/self/fd/ |