Okay, checking back in my fix for the filespec and iterator.

git-svn-id: svn://10.0.0.236/trunk@44375 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
waterson%netscape.com
1999-08-24 22:08:55 +00:00
parent 9fea830d47
commit 06eafa1f9d

View File

@@ -150,7 +150,7 @@ nsDirectoryIndexStream::Read(char* aBuf, PRUint32 aCount, PRUint32* aReadCount)
// Okay, now we'll suck stuff off of our iterator into the mBuf...
while (PRUint32(mBuf.Length()) < aCount && mIter->Exists()) {
const nsFileSpec& current = mIter->Spec();
nsFileSpec current = mIter->Spec();
++(*mIter);
PRFileInfo fileinfo;