Summary: | Digikam crash with non-writable "album library path" | ||
---|---|---|---|
Product: | [Applications] digikam | Reporter: | Diederik van der Boor <vdboor> |
Component: | Albums-Engine | Assignee: | Digikam Developers <digikam-bugs-null> |
Status: | RESOLVED FIXED | ||
Severity: | crash | CC: | caulier.gilles, hjpsoft |
Priority: | NOR | ||
Version: | 0.7.0 | ||
Target Milestone: | --- | ||
Platform: | unspecified | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | 7.5.0 | |
Sentry Crash Report: |
Description
Diederik van der Boor
2004-10-21 15:58:30 UTC
Yes, i confirm this bug. I can reproduce it on my computer... Gilles Caulier CVS commit by pahlibar: fixed crash when the album library path is unwritable. Note to users, at least make the album library path writable, otherwise none of the digikam tags or comments features will work. the actual photo directories don't have to be writable BUG: 91828 M +3 -0 albumdb.cpp 1.11 --- kdeextragear-3/digikam/digikam/albumdb.cpp #1.10:1.11 @@ -237,4 +237,7 @@ void AlbumDB::deleteAlbum(Album *a) void AlbumDB::readPAlbum(PAlbum *album) { + if (!m_db) + return; + QStringList values; |