зеркало из https://github.com/mozilla/pjs.git
Bug 662685: Add parens around "||" condition in txTransformNotifier::SignalTransformEnd to fix logic (& fix build warning). r=bz
This commit is contained in:
Родитель
21e7c66428
Коммит
3cf84ed3ba
|
@ -1078,8 +1078,9 @@ txTransformNotifier::SetOutputDocument(nsIDocument* aDocument)
|
|||
void
|
||||
txTransformNotifier::SignalTransformEnd(nsresult aResult)
|
||||
{
|
||||
if (mInTransform || (NS_SUCCEEDED(aResult) &&
|
||||
mScriptElements.Count() > 0 || mPendingStylesheetCount > 0)) {
|
||||
if (mInTransform ||
|
||||
(NS_SUCCEEDED(aResult) &&
|
||||
(mScriptElements.Count() > 0 || mPendingStylesheetCount > 0))) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче