From c3bc964f70164b556bc558eb46f8ec1d99622ff1 Mon Sep 17 00:00:00 2001 From: "ISHIKAWA, Chiaki" Date: Wed, 8 May 2013 09:14:26 -0400 Subject: [PATCH] Bug 866463 - Remove the initial incorrect assignment. r=joe --- image/src/imgStatusTracker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/image/src/imgStatusTracker.cpp b/image/src/imgStatusTracker.cpp index e8c7be1e8dda..570f94ee5998 100644 --- a/image/src/imgStatusTracker.cpp +++ b/image/src/imgStatusTracker.cpp @@ -540,7 +540,7 @@ imgStatusTracker::CalculateAndApplyDifference(imgStatusTracker* other) if (diff.mUnblockedOnload) { mState &= ~stateBlockingOnload; } - mImageStatus = other->mImageStatus; + mIsMultipart = other->mIsMultipart; mHadLastPart = other->mHadLastPart; mImageStatus |= other->mImageStatus;