Summary: | Crash using dcop action: album_forward | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Antonio E. <aironmail> |
Component: | Albums-Engine | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | crash | CC: | caulier.gilles |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Gentoo Packages | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 0.9.0 | |
Sentry Crash Report: |
Description
Antonio E.
2006-08-25 10:36:49 UTC
The crash happens even with the Image Editor hidden. SVN commit 577073 by mwiesweg: Set this to 0 as in the other similar methods BUG: 132957 M +2 -1 NEWS M +3 -0 digikam/albumhistory.cpp --- trunk/extragear/graphics/digikam/NEWS #577072:577073 @@ -236,6 +236,7 @@ 142 ==> 128817 : configure timestamp naming format for directory names. 143 ==> 132660 : Shortcuts for ratings do not work as of 0.9.x beta. 144 ==> 126874 : digikam does not support <shift+del>. -145 ==> +145 ==> 132957 : Crash using dcop action: album_forward +146 ==> ---------------------------------------------------------------------------------------------------- --- trunk/extragear/graphics/digikam/digikam/albumhistory.cpp #577072:577073 @@ -268,6 +268,9 @@ void AlbumHistory::forward(Album **album, QWidget **widget, unsigned int steps) { + *album = 0; + *widget = 0; + if(m_forwardStack->isEmpty() || steps > m_forwardStack->count()) return; Thank you very much for the patch |