diff options
author | wtchang%redhat.com <devnull@localhost> | 2006-06-11 03:03:50 +0000 |
---|---|---|
committer | wtchang%redhat.com <devnull@localhost> | 2006-06-11 03:03:50 +0000 |
commit | 509bfb642f5a7f9cb77cf579b4ce1a8d623f6510 (patch) | |
tree | e533d7657f5a0500db12fb33621fe37be5a2b5f4 | |
parent | b8dbf467f32da798fc24d182f55ef69337640853 (diff) | |
download | nspr-hg-509bfb642f5a7f9cb77cf579b4ce1a8d623f6510.tar.gz |
Bugzilla Bug 340956: when emulating PR_APPEND, we should use PR_Seek64FIREFOX_2_0b1_RELEASEFIREFOX_2_0b1_RC3FIREFOX_2_0b1_RC2FIREFOX_2_0b1_RC1
instead of PR_Seek, otherwise it won't work on large files. The patch is
contributed by Nils Maier <MaierMan@web.de> and Masatoshi Kimura (:emk)
<VYV03354@nifty.ne.jp>. r=wtc. Thanks to Nils Maier for tracking down the
bug.
Tag: MOZILLA_1_8_BRANCH
-rw-r--r-- | pr/src/io/prfile.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/pr/src/io/prfile.c b/pr/src/io/prfile.c index cdde160b..d5610bf2 100644 --- a/pr/src/io/prfile.c +++ b/pr/src/io/prfile.c @@ -99,10 +99,9 @@ static PRInt32 PR_CALLBACK FileWrite(PRFileDesc *fd, const void *buf, PRInt32 am count = 0; #if !defined(_PR_HAVE_O_APPEND) /* Bugzilla: 4090, 276330 */ - if ( PR_TRUE == fd->secret->appendMode ) { - rv = PR_Seek(fd, 0, PR_SEEK_END ); - if ( -1 == rv ) { - return rv; + if (fd->secret->appendMode) { + if (PR_Seek64(fd, 0, PR_SEEK_END) == -1) { + return -1; } } /* if (fd->secret->appendMode...) */ #endif /* _PR_HAVE_O_APPEND */ |