removes a memset that sets zero bytes (so it did nothing)
This commit is contained in:
kandrot%netscape.com 2001-06-13 00:03:21 +00:00
parent 9537d8b59b
commit d525a161a4

View File

@ -340,7 +340,6 @@ nsAutoVoidArray::nsAutoVoidArray()
SetArraySize(kAutoBufSize);
mImpl->mCount = 0;
SetArrayOwner(PR_FALSE);
::memset(mImpl->mArray, 0, mImpl->mCount * sizeof(void*));
}
//----------------------------------------------------------------