Bug 922613 - Remove erroneous assertion in imgStatusTracker. r=jdm

This commit is contained in:
Seth Fowler 2013-11-01 17:05:01 -07:00
Родитель 067407f98b
Коммит ecc35ec24a
1 изменённых файлов: 0 добавлений и 1 удалений

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

@ -626,7 +626,6 @@ imgStatusTracker::Difference(imgStatusTracker* aOther) const
MOZ_ASSERT(!mIsMultipart || aOther->mIsMultipart, "mIsMultipart should be monotonic");
diff.foundIsMultipart = !mIsMultipart && aOther->mIsMultipart;
MOZ_ASSERT(!mHadLastPart || aOther->mHadLastPart, "mHadLastPart should be monotonic");
diff.foundLastPart = !mHadLastPart && aOther->mHadLastPart;
diff.gotDecoded = !mHasBeenDecoded && aOther->mHasBeenDecoded;