зеркало из https://github.com/mozilla/gecko-dev.git
Bug 183623 malformed for loop results in infinite loop in [@ nsURILoader::DispatchContent]
r=bz sr=darin a=asa
This commit is contained in:
Родитель
52298fc159
Коммит
b2b5ce1025
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче