Skip to content
Snippets Groups Projects
Commit 9775b372 authored by Joe Drew's avatar Joe Drew
Browse files

Bug 802390 - Gracefully handle shutting down a decoder that hasn't had a...

Bug 802390 - Gracefully handle shutting down a decoder that hasn't had a chance to do any work. r=jrmuizel
parent 5748e6d4
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,7 @@ Decoder::Finish()
nsCOMPtr<nsIScriptError> errorObject =
do_CreateInstance(NS_SCRIPTERROR_CONTRACTID);
if (consoleService && errorObject && !HasDecoderError()) {
if (consoleService && errorObject && HasDataError() && !HasDecoderError()) {
nsAutoString msg(NS_LITERAL_STRING("Image corrupt or truncated: ") +
NS_ConvertASCIItoUTF16(mImage.GetURIString()));
......@@ -114,16 +114,22 @@ Decoder::Finish()
}
}
// If we only have a data error, see if things are worth salvaging
bool salvage = !HasDecoderError() && mImage.GetNumFrames();
// If we're salvaging, say we finished decoding
if (salvage)
mImage.DecodingComplete();
bool usable = true;
if (HasDataError() && !HasDecoderError()) {
// If we only have a data error, we're usable if we have at least one frame.
if (mImage.GetNumFrames() == 0) {
usable = false;
}
}
// Fire teardown notifications
if (mObserver) {
mObserver->OnStopDecode(salvage ? NS_OK : NS_ERROR_FAILURE);
// If we're usable, do exactly what we should have when the decoder
// completed.
if (usable) {
PostDecodeDone();
} else {
if (mObserver) {
mObserver->OnStopDecode(NS_ERROR_FAILURE);
}
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment