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

This commit is contained in:
waterson%netscape.com 1999-08-24 22:08:55 +00:00
parent d150b47c89
commit 4b3a77da70

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;