[gtk+/wip/baedert/drawing: 26/30] notebook: Fix crash when dragging a tab
- From: Timm Bäder <baedert src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/wip/baedert/drawing: 26/30] notebook: Fix crash when dragging a tab
- Date: Wed, 3 May 2017 09:38:28 +0000 (UTC)
commit 49f03dd280cbe7d611e59881ac9b633aafbd3863
Author: Timm Bäder <mail baedert org>
Date: Wed May 3 11:21:29 2017 +0200
notebook: Fix crash when dragging a tab
gtk_gesture_get_last_event can return NULL, so guard against that.
gtk/gtknotebook.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c
index 88bf788..02ec61d 100644
--- a/gtk/gtknotebook.c
+++ b/gtk/gtknotebook.c
@@ -2941,6 +2941,9 @@ gtk_notebook_gesture_released (GtkGestureMultiPress *gesture,
button = gtk_gesture_single_get_current_button (GTK_GESTURE_SINGLE (gesture));
event = gtk_gesture_get_last_event (GTK_GESTURE (gesture), sequence);
+ if (!event)
+ return;
+
if (event->type != GDK_BUTTON_RELEASE)
return;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]