Summary: | dumpDeadLetters() crash | ||
---|---|---|---|
Product: | [Unmaintained] kmail | Reporter: | tobias <bugs> |
Component: | general | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | crash | CC: | amilcar, carstenlohrke, DanMoinescu, dyioulos, guy, mark, pentek.imre, psychonaut, schnetter |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
tobias
2004-09-29 14:33:16 UTC
*** Bug 90667 has been marked as a duplicate of this bug. *** *** Bug 93530 has been marked as a duplicate of this bug. *** *** Bug 92709 has been marked as a duplicate of this bug. *** *** Bug 92660 has been marked as a duplicate of this bug. *** *** Bug 88093 has been marked as a duplicate of this bug. *** Adjusting title to make it easier to find. *** Bug 90157 has been marked as a duplicate of this bug. *** I also have a crash on shutdown of the computer of Kmail. I do not know if it is for the same reason, here is the backtrace: Using host libthread_db library "/lib/tls/libthread_db.so.1". [Thread debugging using libthread_db enabled] [New Thread -1249015264 (LWP 2475)] [New Thread -1280746576 (LWP 2673)] [New Thread -1272357968 (LWP 2672)] [New Thread -1263969360 (LWP 2671)] [New Thread -1255580752 (LWP 2670)] [KCrash handler] #5 KMComposeWin::autoSaveMessage (this=0x85d5360) at /tmp/buildd/kdepim-3.5.1/build-tree/kdepim-3.5.1/kmail/kmcomposewin.cpp:696 #6 0xb7c95ded in KMComposeWin::qt_invoke (this=0x85d5360, _id=143, _o=0xbff99f8c) at kmcomposewin.moc:461 #7 0xb70e47ff in QObject::activate_signal () from /usr/lib/libqt-mt.so.3 #8 0xb70e5290 in QObject::activate_signal () from /usr/lib/libqt-mt.so.3 #9 0xb7474526 in QTimer::timeout () from /usr/lib/libqt-mt.so.3 #10 0xb7109741 in QTimer::event () from /usr/lib/libqt-mt.so.3 #11 0xb707b122 in QApplication::internalNotify () from /usr/lib/libqt-mt.so.3 #12 0xb707b314 in QApplication::notify () from /usr/lib/libqt-mt.so.3 #13 0xb777efbe in KApplication::notify (this=0xbff9a578, receiver=0x86a4de0, event=0xbff9a2d8) at kapplication.cpp:550 #14 0xb700c861 in QApplication::sendEvent () from /usr/lib/libqt-mt.so.3 #15 0xb706cbad in QEventLoop::activateTimers () from /usr/lib/libqt-mt.so.3 #16 0xb7020566 in QEventLoop::processEvents () from /usr/lib/libqt-mt.so.3 #17 0xb7093b01 in QEventLoop::enterLoop () from /usr/lib/libqt-mt.so.3 #18 0xb7093a26 in QEventLoop::exec () from /usr/lib/libqt-mt.so.3 #19 0xb7079c35 in QApplication::exec () from /usr/lib/libqt-mt.so.3 #20 0x0804a098 in main (argc=0, argv=0x0) at /tmp/buildd/kdepim-3.5.1/build-tree/kdepim-3.5.1/kmail/main.cpp:110 #21 0xb7844001 in __libc_start_main () from /lib/tls/libc.so.6 #22 0x08049e11 in _start () at ../sysdeps/i386/elf/start.S:119 *** Bug 103129 has been marked as a duplicate of this bug. *** *** Bug 109256 has been marked as a duplicate of this bug. *** *** Bug 98824 has been marked as a duplicate of this bug. *** SVN commit 699554 by bvirlet: Fixes event loop bug. Credit goes to Dirk. BUG: 108312 BUG: 148700 BUG: 143003 BUG: 136365 BUG: 90467 Most probably closed: BUG: 143776 BUG: 147016 BUG: 137279 BUG: 136413 https://bugzilla.novell.com/show_bug.cgi?id=226462 M +10 -17 kmcomposewin.cpp M +1 -1 kmcomposewin.h --- branches/KDE/3.5/kdepim/kmail/kmcomposewin.cpp #699553:699554 @@ -709,16 +709,22 @@ if ( mAutoSaveTimer ) mAutoSaveTimer->stop(); + connect( this, SIGNAL( applyChangesDone( bool ) ), - this, SLOT( slotContinueAutoSave( bool ) ) ); + this, SLOT( slotContinueAutoSave() ) ); // This method is called when KMail crashed, so don't try signing/encryption // and don't disable controls because it is also called from a timer and // then the disabling is distracting. applyChanges( true, true ); // Don't continue before the applyChanges is done! - qApp->enter_loop(); +} +void KMComposeWin::slotContinueAutoSave() +{ + disconnect( this, SIGNAL( applyChangesDone( bool ) ), + this, SLOT( slotContinueAutoSave( bool ) ) ); + // Ok, it's done now - continue dead letter saving if ( mComposedMessages.isEmpty() ) { kdDebug(5006) << "Composing the message failed." << endl; @@ -761,16 +767,9 @@ } if ( autoSaveInterval() > 0 ) - mAutoSaveTimer->start( autoSaveInterval() ); + updateAutoSave(); } -void KMComposeWin::slotContinueAutoSave( bool ) -{ - disconnect( this, SIGNAL( applyChangesDone( bool ) ), - this, SLOT( slotContinueAutoSave( bool ) ) ); - qApp->exit_loop(); -} - //----------------------------------------------------------------------------- void KMComposeWin::slotView(void) { @@ -2193,18 +2192,12 @@ { kdDebug(5006) << "entering KMComposeWin::applyChanges" << endl; - if(!mMsg) { + if(!mMsg || mComposer) { kdDebug(5006) << "KMComposeWin::applyChanges() : mMsg == 0!\n" << endl; emit applyChangesDone( false ); return; } - if( mComposer ) { - kdDebug(5006) << "KMComposeWin::applyChanges() : applyChanges called twice" - << endl; - return; - } - // Make new job and execute it mComposer = new MessageComposer( this ); connect( mComposer, SIGNAL( done( bool ) ), --- branches/KDE/3.5/kdepim/kmail/kmcomposewin.h #699553:699554 @@ -780,7 +780,7 @@ void slotContinueDoSend( bool ); void slotContinuePrint( bool ); - void slotContinueAutoSave( bool ); + void slotContinueAutoSave(); void slotEncryptChiasmusToggled( bool ); |