Summary: | digikam 0.9.2 crashes when exiting - slideshow error | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Geoff King <gsking1> |
Component: | Plugin-Generic-Presentation | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | crash | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Ubuntu | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 0.1.0 | |
Sentry Crash Report: |
Description
Geoff King
2007-06-14 23:01:14 UTC
Hello, It was my report mentioned on the digikam users list. The only thing I have to add here, is if you actually create a slideshow and run it, digikam does not crash on exit. If you start digikam and exit right away, digikam will crash everytime. Something bad happens when one attempts to delete the member m_urllist in the plugin_slideshow class when the destructor is called. Regards, Gerry SVN commit 675742 by vfuoglio: Fixed BUG 146799 , titled "digikam 0.9.2 crashes when exiting - slideshow error". BUG: 146799 CCMAIL: kde-imaging@kde.org CCMAIL: digikam-users@kde.org M +2 -2 plugin_slideshow.cpp --- branches/extragear/kde3/libs/kipi-plugins/slideshow/plugin_slideshow.cpp #675741:675742 @@ -78,6 +78,8 @@ m_interface = dynamic_cast< KIPI::Interface* >( parent() ); + m_urlList = new KURL::List(); + if ( !m_interface ) { kdError( 51000 ) << "Kipi m_interface is null!" << endl; @@ -118,8 +120,6 @@ } m_imagesHasComments = m_interface->hasFeature(KIPI::ImagesHasComments); - - m_urlList = new KURL::List(); KIPISlideShowPlugin::SlideShowConfig *slideShowConfig = new KIPISlideShowPlugin::SlideShowConfig( allowSelectedOnly, m_interface,kapp->activeWindow(), |