about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/i386/lxstat.c
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@suse.de>2015-10-22 14:38:52 +0200
committerAndreas Schwab <schwab@suse.de>2015-10-22 14:59:29 +0200
commit751709fec943a853c2543eb6f7995cae723f7b78 (patch)
tree2c2fedf574659ea0247dac53564db1040b5a8845 /sysdeps/unix/sysv/linux/i386/lxstat.c
parent1ee1218e3f9b6eda8bc07303027158a4f660fdab (diff)
downloadglibc-751709fec943a853c2543eb6f7995cae723f7b78.tar.gz
glibc-751709fec943a853c2543eb6f7995cae723f7b78.tar.xz
glibc-751709fec943a853c2543eb6f7995cae723f7b78.zip
Always use INTERNAL_SYSCALL_ERRNO with INTERNAL_SYSCALL
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386/lxstat.c')
-rw-r--r--sysdeps/unix/sysv/linux/i386/lxstat.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/lxstat.c b/sysdeps/unix/sysv/linux/i386/lxstat.c
index bd627749b3..4898af76b3 100644
--- a/sysdeps/unix/sysv/linux/i386/lxstat.c
+++ b/sysdeps/unix/sysv/linux/i386/lxstat.c
@@ -46,7 +46,8 @@ __lxstat (int vers, const char *name, struct stat *buf)
     INTERNAL_SYSCALL_DECL (err);
     result = INTERNAL_SYSCALL (lstat64, err, 2, name, &buf64);
     if (__glibc_unlikely (INTERNAL_SYSCALL_ERROR_P (result, err)))
-      return INLINE_SYSCALL_ERROR_RETURN_VALUE (-result);
+      return INLINE_SYSCALL_ERROR_RETURN_VALUE (INTERNAL_SYSCALL_ERRNO (result,
+									err));
     else
       return __xstat32_conv (vers, &buf64, buf);
   }