This commit is contained in:
cbiesinger%web.de 2005-01-09 22:19:32 +00:00
Родитель 00954938bf
Коммит 729436b5d5
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -208,7 +208,7 @@ nsInputStreamTransport::Read(char *buf, PRUint32 count, PRUint32 *result)
{
if (mFirstTime) {
mFirstTime = PR_FALSE;
if (mOffset == nsUint64(0)) {
if (mOffset != nsUint64(0)) {
// read from current position if offset equal to max
if (mOffset != LL_MAXUINT) {
nsCOMPtr<nsISeekableStream> seekable = do_QueryInterface(mSource);
@ -410,7 +410,7 @@ nsOutputStreamTransport::Write(const char *buf, PRUint32 count, PRUint32 *result
{
if (mFirstTime) {
mFirstTime = PR_FALSE;
if (!!mOffset) {
if (mOffset != nsUint64(0)) {
// write to current position if offset equal to max
if (mOffset != LL_MAXUINT) {
nsCOMPtr<nsISeekableStream> seekable = do_QueryInterface(mSink);