mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-03 10:33:33 +00:00
fix assertion about 0 msg size when first msg you select is fetched with mpod r=cavin, sr=mscott
This commit is contained in:
parent
a119df5501
commit
2ee9be3ad5
@ -2688,14 +2688,15 @@ void nsImapServerResponseParser::SetSyntaxError(PRBool error)
|
||||
|
||||
nsresult nsImapServerResponseParser::BeginMessageDownload(const char *content_type)
|
||||
{
|
||||
NS_ASSERTION(fSizeOfMostRecentMessage > 0, "most recent message has 0 or negative size");
|
||||
nsresult rv = fServerConnection.BeginMessageDownLoad(fSizeOfMostRecentMessage,
|
||||
content_type);
|
||||
if (NS_FAILED(rv))
|
||||
{
|
||||
skip_to_CRLF();
|
||||
fServerConnection.PseudoInterrupt(PR_TRUE);
|
||||
fServerConnection.AbortMessageDownLoad();
|
||||
}
|
||||
// if we're downloading a message, assert that we know its size.
|
||||
NS_ASSERTION(fDownloadingHeaders || fSizeOfMostRecentMessage > 0, "most recent message has 0 or negative size");
|
||||
nsresult rv = fServerConnection.BeginMessageDownLoad(fSizeOfMostRecentMessage,
|
||||
content_type);
|
||||
if (NS_FAILED(rv))
|
||||
{
|
||||
skip_to_CRLF();
|
||||
fServerConnection.PseudoInterrupt(PR_TRUE);
|
||||
fServerConnection.AbortMessageDownLoad();
|
||||
}
|
||||
return rv;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user