Closed
Bug 47497
Opened 25 years ago
Closed 25 years ago
After sending mail get dialog that says you can't save mail to local folder the crashes
Categories
(MailNews Core :: Composition, defect, P3)
MailNews Core
Composition
Tracking
(Not tracked)
VERIFIED
FIXED
M18
People
(Reporter: jeziorek, Assigned: bugzilla)
References
Details
(Keywords: smoketest, Whiteboard: Fix in hand)
Attachments
(1 file)
67.62 KB,
text/plain
|
Details |
-start browser
-Tasks|Netscape Mail
-compose a new message by pressing on the new message button
-send it to yourself and put whatever you want in the subject and body
-send the message
-you'll get a dialog that says: Your send operation was successful, but copying
the message to your sent folder failed. WOuld you like to return to the
compose window?
-press ok
-watch as it crashes
all platforms trunk m18 build 2000-08-03-08-M18
Comment 1•25 years ago
|
||
definitely holding for this one.
Assignee | ||
Comment 2•25 years ago
|
||
Looking at it right now...
QA, can you try to reproduce this problem, thanks
Status: NEW → ASSIGNED
Target Milestone: --- → M18
Comment 3•25 years ago
|
||
I can reproduce this bug. I am about to attach a stdlog.
Comment 4•25 years ago
|
||
Assignee | ||
Comment 6•25 years ago
|
||
I see the crash also when the copy operation succeeded.
Assignee | ||
Comment 7•25 years ago
|
||
I found the problem:
at the end of the function nsMsgLocalMailFolder::EndCopy, you do :
srcFolder = do_QueryInterface(mCopyState->m_srcSupport, &rv);
if (srcFolder)
...
The problem is that in my case, I don't have a source folder therefore the query interface will failed
and rv will contains an error. As we return an error, we will later thought that the copy failed and
therefore clear the request but the request has been already cleared by the completion runtine
because the copy didn't failed but correctly succeeded.
the fix is to do:
srcFolder = do_QueryInterface(mCopyState->m_srcSupport);
if (srcFolder)
...
Whiteboard: Fix in hand
Comment 8•25 years ago
|
||
get it reviewed and check it in, a=granrose.
Assignee | ||
Comment 9•25 years ago
|
||
Fixed and checked in
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Reporter | ||
Comment 10•25 years ago
|
||
No longer see this on Linux build 2000-08-04-08-M18 will verify after checking
win and mac
Reporter | ||
Comment 11•25 years ago
|
||
no longer see this on any platoforms using build 2000-08-04-08-M18; verifying
Status: RESOLVED → VERIFIED
Updated•20 years ago
|
Product: MailNews → Core
Updated•17 years ago
|
Product: Core → MailNews Core
You need to log in
before you can comment on or make changes to this bug.
Description
•