re GNATS java.io/202 (File creation doesn't observe umask)

2000-04-16  Bryce McKinlay  <bryce@albatross.co.nz>

	* java/io/natFileDescriptorPosix.cc (open): Use mode 0666. Fix for
	PR libgcj/202.
	(available): Initialize `Where' to prevent bogus compiler warning.

From-SVN: r33181
This commit is contained in:
Bryce McKinlay 2000-04-16 03:09:27 +00:00 committed by Bryce McKinlay
parent f6fab919ba
commit 8bfecb841a
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2000-04-16 Bryce McKinlay <bryce@albatross.co.nz>
* java/io/natFileDescriptorPosix.cc (open): Use mode 0666. Fix for PR
libgcj/202.
(available): Initialize `where' to prevent bogus compiler warning.
2000-04-12 Tom Tromey <tromey@cygnus.com>
* java/lang/natString.cc (intern): Temporarily disable finalizer

View File

@ -83,7 +83,7 @@ java::io::FileDescriptor::open (jstring path, jint jflags)
#endif
JvAssert ((jflags & READ) || (jflags & WRITE));
int mode = 0644;
int mode = 0666;
if ((jflags & READ) && (jflags & WRITE))
flags |= O_RDWR;
else if ((jflags & READ))
@ -281,7 +281,7 @@ java::io::FileDescriptor::available (void)
if (! num_set)
{
struct stat sb;
off_t where;
off_t where = 0;
if (fstat (fd, &sb) != -1
&& S_ISREG (sb.st_mode)
&& (where = lseek (fd, SEEK_CUR, 0)) != (off_t) -1)