mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-20 05:19:21 +08:00
Fri Feb 25 14:50:50 2000 Jeff Johnston <jjohnstn@cygnus.com>
* libc/stdio/flags.c (__sflags): Added check that mode[1] is non-null before looking at mode[2].
This commit is contained in:
parent
e53d3a5d95
commit
dbaf37cf83
@ -1,3 +1,8 @@
|
||||
Fri Feb 25 14:50:50 2000 Jeff Johnston <jjohnstn@cygnus.com>
|
||||
|
||||
* libc/stdio/flags.c (__sflags): Added check that mode[1]
|
||||
is non-null before looking at mode[2].
|
||||
|
||||
Thu Feb 24 11:43:00 2000 Ran Cabell <rcabell@norfolk.infi.net>
|
||||
|
||||
* libm/mathfp/sf_atan2.c: Fix atan2 typo for _DOUBLE_IS_32_BITS.
|
||||
|
@ -61,19 +61,19 @@ __sflags (ptr, mode, optr)
|
||||
ptr->_errno = EINVAL;
|
||||
return (0);
|
||||
}
|
||||
if (mode[1] == '+' || mode[2] == '+')
|
||||
if (mode[1] && (mode[1] == '+' || mode[2] == '+'))
|
||||
{
|
||||
ret = __SRW;
|
||||
m = O_RDWR;
|
||||
}
|
||||
if (mode[1] == 'b' || mode[2] == 'b')
|
||||
if (mode[1] && (mode[1] == 'b' || mode[2] == 'b'))
|
||||
{
|
||||
#ifdef O_BINARY
|
||||
m |= O_BINARY;
|
||||
#endif
|
||||
}
|
||||
#ifdef __CYGWIN__
|
||||
else if (mode[1] == 't' || mode[2] == 't')
|
||||
else if (mode[1] && (mode[1] == 't' || mode[2] == 't'))
|
||||
#else
|
||||
else
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user