removes a memset that sets zero bytes (so it did nothing)
This commit is contained in:
kandrot@netscape.com
2005-11-02 16:04:29 +00:00
parent ff3229d9e0
commit 2f0a0f5135

View File

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