mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 22:01:30 +00:00
Bug 412786, uninitialized variable r=rrelyea, a1.9=mtschrep
This commit is contained in:
parent
0810da1295
commit
723e7f78f7
@ -690,7 +690,7 @@ nsNSSComponent::CleanupIdentityInfo()
|
||||
if (testEVInfosLoaded) {
|
||||
testEVInfosLoaded = PR_FALSE;
|
||||
if (testEVInfos) {
|
||||
for (size_t i; i<testEVInfos->Length(); ++i) {
|
||||
for (size_t i = 0; i<testEVInfos->Length(); ++i) {
|
||||
delete testEVInfos->ElementAt(i);
|
||||
}
|
||||
testEVInfos->Clear();
|
||||
|
Loading…
Reference in New Issue
Block a user