mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
* sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Only store
results if the call was succesful.
This commit is contained in:
@ -1,5 +1,8 @@
|
|||||||
2006-05-10 Ulrich Drepper <drepper@redhat.com>
|
2006-05-10 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
* sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Only store
|
||||||
|
results if the call was succesful.
|
||||||
|
|
||||||
* nis/nss-nis.h: Mark __yperr2nss_tab and __yperr2nss_count as hidden.
|
* nis/nss-nis.h: Mark __yperr2nss_tab and __yperr2nss_count as hidden.
|
||||||
|
|
||||||
* nis/nss-nisplus.h: Mark __niserr2nss_tab and __niserr2nss_count
|
* nis/nss-nisplus.h: Mark __niserr2nss_tab and __niserr2nss_count
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* Copyright (C) 1992, 1995, 1997, 1998, 2003 Free Software Foundation, Inc.
|
/* Copyright (C) 1992,1995,1997,1998,2003,2006 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -40,6 +40,8 @@ __tcgetattr (fd, termios_p)
|
|||||||
|
|
||||||
retval = INLINE_SYSCALL (ioctl, 3, fd, TCGETS, &k_termios);
|
retval = INLINE_SYSCALL (ioctl, 3, fd, TCGETS, &k_termios);
|
||||||
|
|
||||||
|
if (__builtin_expect (retval == 0, 1))
|
||||||
|
{
|
||||||
termios_p->c_iflag = k_termios.c_iflag;
|
termios_p->c_iflag = k_termios.c_iflag;
|
||||||
termios_p->c_oflag = k_termios.c_oflag;
|
termios_p->c_oflag = k_termios.c_oflag;
|
||||||
termios_p->c_cflag = k_termios.c_cflag;
|
termios_p->c_cflag = k_termios.c_cflag;
|
||||||
@ -66,14 +68,13 @@ __tcgetattr (fd, termios_p)
|
|||||||
_POSIX_VDISABLE, (NCCS - __KERNEL_NCCS) * sizeof (cc_t));
|
_POSIX_VDISABLE, (NCCS - __KERNEL_NCCS) * sizeof (cc_t));
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
size_t cnt;
|
|
||||||
|
|
||||||
memcpy (&termios_p->c_cc[0], &k_termios.c_cc[0],
|
memcpy (&termios_p->c_cc[0], &k_termios.c_cc[0],
|
||||||
__KERNEL_NCCS * sizeof (cc_t));
|
__KERNEL_NCCS * sizeof (cc_t));
|
||||||
|
|
||||||
for (cnt = __KERNEL_NCCS; cnt < NCCS; ++cnt)
|
for (size_t cnt = __KERNEL_NCCS; cnt < NCCS; ++cnt)
|
||||||
termios_p->c_cc[cnt] = _POSIX_VDISABLE;
|
termios_p->c_cc[cnt] = _POSIX_VDISABLE;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return retval;
|
return retval;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user