mirror of
https://sourceware.org/git/glibc.git
synced 2026-01-06 11:51:29 +03:00
Remove CHECK_STRING, CHECK_STRING_NULL_OK and __ubp_memchr.
This commit is contained in:
@@ -109,10 +109,10 @@ __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag)
|
||||
if (vers == _STAT_VER_KERNEL)
|
||||
{
|
||||
if (flag & AT_SYMLINK_NOFOLLOW)
|
||||
result = INTERNAL_SYSCALL (lstat, err, 2, CHECK_STRING (file),
|
||||
result = INTERNAL_SYSCALL (lstat, err, 2, file,
|
||||
CHECK_1 ((struct kernel_stat *) st));
|
||||
else
|
||||
result = INTERNAL_SYSCALL (stat, err, 2, CHECK_STRING (file),
|
||||
result = INTERNAL_SYSCALL (stat, err, 2, file,
|
||||
CHECK_1 ((struct kernel_stat *) st));
|
||||
|
||||
if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
|
||||
@@ -126,11 +126,9 @@ __fxstatat (int vers, int fd, const char *file, struct stat *st, int flag)
|
||||
}
|
||||
#else
|
||||
if (flag & AT_SYMLINK_NOFOLLOW)
|
||||
result = INTERNAL_SYSCALL (lstat, err, 2, CHECK_STRING (file),
|
||||
__ptrvalue (&kst));
|
||||
result = INTERNAL_SYSCALL (lstat, err, 2, file, __ptrvalue (&kst));
|
||||
else
|
||||
result = INTERNAL_SYSCALL (stat, err, 2, CHECK_STRING (file),
|
||||
__ptrvalue (&kst));
|
||||
result = INTERNAL_SYSCALL (stat, err, 2, file, __ptrvalue (&kst));
|
||||
|
||||
if (__builtin_expect (!INTERNAL_SYSCALL_ERROR_P (result, err), 1))
|
||||
return __xstat_conv (vers, &kst, st);
|
||||
|
||||
Reference in New Issue
Block a user