Bug 183623 malformed for loop results in infinite loop in [@ nsURILoader::DispatchContent]

r=bz sr=darin a=asa
This commit is contained in:
timeless%mozdev.org 2002-12-05 21:44:28 +00:00
Родитель 52298fc159
Коммит b2b5ce1025
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -822,9 +822,9 @@ NS_IMETHODIMP nsURILoader::DispatchContent(const char * aContentType,
listenerToUse = listener;
}
} else {
// remove from the listener list, and reset i
m_listeners->RemoveElementAt(i);
i--;
// remove from the listener list, reset i and update count
m_listeners->RemoveElementAt(i--);
--count;
}
} // for loop
} // if we can't handle the content