Version: 1.3.91 (using KDE KDE 3.5.3) Installed from: Gentoo Packages Compiler: gcc (GCC) 4.1.1 (Gentoo 4.1.1) Compiled with -O2 -march=pentium4 -pipe -fomit-frame-pointer -fno-ident -momit-leaf-frame-pointer, kdehiddenvisibility and kdeenablefinal OS: Linux To reproduce: 1. Go to any folder with images. 2. Right click on empty space to call folder context menu. 3. Choose 'Properties'. 4. Segfault
Hi, I use 1.3.92 (KDE 3.5.4). I can confirm this crash. Attached the crash report.
Created attachment 17853 [details] Crash report
SVN commit 593752 by gateau: Fix crash when showing current folder properties from context menu BUG: 129890 M +5 -0 NEWS M +5 -1 app/mainwindow.cpp --- trunk/extragear/graphics/gwenview/NEWS #593751:593752 @@ -1,3 +1,8 @@ +2006.xx.xx - v1.4.1 +- Fixes: + - Fix crash when showing current folder properties from context menu (Bug + 129890) + 2006.09.16 - v1.4.0 - Fixes: - In a slideshow, let videos play to the end before showing next image/video. --- trunk/extragear/graphics/gwenview/app/mainwindow.cpp #593751:593752 @@ -402,7 +402,11 @@ void MainWindow::showFileProperties() { if (mFileViewController->isVisible()) { const KFileItemList* list = mFileViewController->currentFileView()->selectedItems(); - (void)new KPropertiesDialog(*list, this); + if (list->count() > 0) { + (void)new KPropertiesDialog(*list, this); + } else { + (void)new KPropertiesDialog(mFileViewController->dirURL(), this); + } } else { (void)new KPropertiesDialog(mDocument->url(), this); }