зеркало из https://github.com/mozilla/pjs.git
fix warning.
This commit is contained in:
Родитель
fb7fad4bed
Коммит
ae7b1266a2
|
@ -42,8 +42,10 @@ void nsUrlListenerManager::ReleaseListeners()
|
||||||
if(m_listeners)
|
if(m_listeners)
|
||||||
{
|
{
|
||||||
PRUint32 count;
|
PRUint32 count;
|
||||||
nsresult rv = m_listeners->Count(&count);
|
nsresult rv = m_listeners->Count(&count);
|
||||||
|
NS_ASSERTION(NS_SUCCEEDED(rv), "m_listeners->Count() failed");
|
||||||
|
if (NS_FAILED(rv)) return;
|
||||||
|
|
||||||
for (int i = count - 1; i >= 0; i--)
|
for (int i = count - 1; i >= 0; i--)
|
||||||
m_listeners->RemoveElementAt(i);
|
m_listeners->RemoveElementAt(i);
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче