[digikam] [Bug 366630] New: DigiKamNot Responding if 'Right Click' on a empty area below the album lists

classic Classic list List threaded Threaded
12 messages Options
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 366630] New: DigiKamNot Responding if 'Right Click' on a empty area below the album lists

bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=366630

            Bug ID: 366630
           Summary: DigiKamNot Responding if 'Right Click' on a empty area
                    below the album lists
           Product: digikam
           Version: 5.1.0
          Platform: MS Windows
                OS: MS Windows
            Status: UNCONFIRMED
          Severity: normal
          Priority: NOR
         Component: AlbumsView
          Assignee: [hidden email]
          Reporter: [hidden email]

Browsing album has no problem.
Clicking on album list showing context menu, no problem.
But if i Right click on empty area. (Empty area below the  album lists), then
Crashing/Not responding. And there is no way but close it.

NB: using DigiKam x64 bit app, don't know about x86 and about other platforms.

Reproducible: Always

Steps to Reproduce:
1. Open DigiKam
2.Right Click on a empty area  below the  album lists

Actual Results:  
Not Responding/Crash

Expected Results:  
Currently nothing should happen

PC Config
----------------
Windows 10
x64 based OS
Clock: 3200 Mhz
Nvidia GeForce GT 730
8 GB RAM

--
You are receiving this mail because:
You are the assignee for the bug.
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 366630] DigiKamNot Responding if 'Right Click' on a empty area below the album lists

bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=366630

Zabir <[hidden email]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |crash

--
You are receiving this mail because:
You are the assignee for the bug.
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 366630] DigiKam Not Responding if 'Right Click' on a empty area below the album lists

bugzilla_noreply
In reply to this post by bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=366630

Zabir <[hidden email]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|DigiKamNot Responding if    |DigiKam Not Responding if
                   |'Right Click' on a empty    |'Right Click' on a empty
                   |area below the album lists  |area below the album lists

--
You are receiving this mail because:
You are the assignee for the bug.
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 366630] DigiKam Not Responding if 'Right Click' on a empty area below the album lists

bugzilla_noreply
In reply to this post by bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=366630

[hidden email] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[hidden email]

--- Comment #1 from [hidden email] ---
Where exactly you right click with mouse exactly? Can you take a screenshot
please ?

--
You are receiving this mail because:
You are the assignee for the bug.
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 366630] digiKam Not Responding if 'Right Click' on a empty area below the album lists

bugzilla_noreply
In reply to this post by bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=366630

[hidden email] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|DigiKam Not Responding if   |digiKam Not Responding if
                   |'Right Click' on a empty    |'Right Click' on a empty
                   |area below the album lists  |area below the album lists

--
You are receiving this mail because:
You are the assignee for the bug.
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 366630] digiKam Not Responding if 'Right Click' on a empty area below the album lists

bugzilla_noreply
In reply to this post by bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=366630

--- Comment #2 from [hidden email] ---
Can be relevant of Coverity Scan report #1368976 :

1083void AbstractAlbumTreeView::contextMenuEvent(QContextMenuEvent* event)
1084{
1085    if (!d->enableContextMenu)
1086    {
1087        return;
1088    }
1089
1090    Album* const album =
albumFilterModel()->albumForIndex(indexAt(event->pos()));
1091
        deref_ptr_in_call: Dereferencing pointer album. [show details]
1092    if (album->isTrashAlbum())
1093    {
1094        // For the moment, disabling context menu for trash.
1095        // TODO : customize it.
1096        return;
1097    }
1098
1099    if (!showContextMenuAt(event, album))
1100    {
1101        return;
1102    }
1103
1104    // switch to the selected album if need

CID 1368976 (#1 of 1): Dereference before null check (REVERSE_INULL)
check_after_deref: Null-checking album suggests that it may be null, but it has
already been dereferenced on all paths leading to the check.
1105    if (d->selectOnContextMenu && album)
1106    {
1107        setCurrentAlbums(QList<Album*>() << album);
1108    }

--
You are receiving this mail because:
You are the assignee for the bug.
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 366630] digiKam Not Responding if 'Right Click' on a empty area below the album lists

bugzilla_noreply
In reply to this post by bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=366630

[hidden email] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
   Version Fixed In|                            |5.2.0
             Status|UNCONFIRMED                 |RESOLVED
      Latest Commit|                            |http://commits.kde.org/digi
                   |                            |kam/7c628bac74afe24dbc4ca66
                   |                            |b1bd5d513e46f6377

--- Comment #3 from [hidden email] ---
Git commit 7c628bac74afe24dbc4ca66b1bd5d513e46f6377 by Gilles Caulier.
Committed on 11/08/2016 at 11:41.
Pushed by cgilles into branch 'master'.

Fix CR #1368976
FIXED-IN: 5.2.0

M  +6    -1    libs/album/albumtreeview.cpp

http://commits.kde.org/digikam/7c628bac74afe24dbc4ca66b1bd5d513e46f6377

--
You are receiving this mail because:
You are the assignee for the bug.
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 366630] digiKam Not Responding if 'Right Click' on a empty area below the album lists

bugzilla_noreply
In reply to this post by bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=366630

--- Comment #4 from Zabir <[hidden email]> ---
Created attachment 100548
  --> https://bugs.kde.org/attachment.cgi?id=100548&action=edit
Right Clicking in The empty are (Marked) crashed digiKam

--
You are receiving this mail because:
You are the assignee for the bug.
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 366630] digiKam Not Responding if 'Right Click' on a empty area below the album lists

bugzilla_noreply
In reply to this post by bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=366630

Zabir <[hidden email]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #100548|Right Clicking in The empty |Right Clicking on The empty
        description|are (Marked) crashed        |are (Marked) crashed
                   |digiKam                     |digiKam

--
You are receiving this mail because:
You are the assignee for the bug.
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 366630] digiKam Not Responding if 'Right Click' on a empty area below the album lists

bugzilla_noreply
In reply to this post by bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=366630

Zabir <[hidden email]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #100548|Right Clicking on The empty |Right Clicking on The empty
        description|are (Marked) crashed        |are (Marked) crash digiKam
                   |digiKam                     |

--
You are receiving this mail because:
You are the assignee for the bug.
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 366630] digiKam Not Responding if 'Right Click' on a empty area below the album lists

bugzilla_noreply
In reply to this post by bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=366630

Zabir <[hidden email]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #100548|Right Clicking on The empty |Right Clicking on The empty
        description|are (Marked) crash digiKam  |area (Marked) crash digiKam

--
You are receiving this mail because:
You are the assignee for the bug.
Reply | Threaded
Open this post in threaded view
|

[digikam] [Bug 366630] digiKam Not Responding if 'Right Click' on a empty area below the album lists

bugzilla_noreply
In reply to this post by bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=366630

--- Comment #5 from Zabir <[hidden email]> ---
Also right clicking here crashing in same way:

On 'Timeline' tab/sidebar : 'Searches' section/module
On 'Searches' tab/sidebar: 'Searches' section/module
On 'Fuzzy' tab/sidebar: 'Searches' section/module for both 'Image' and 'Sketch'
tab
On 'Map' tab/sidebar: 'Searches' section/module

--
You are receiving this mail because:
You are the assignee for the bug.