From c7f5f10853b3edeabcd4a4374417afa8e54d55a0 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Wed, 20 Nov 2013 17:32:32 +0000 Subject: [PATCH] gtknotebook: Fix a potential NULL pointer dereference Found by scan-build. https://bugzilla.gnome.org/show_bug.cgi?id=712760 --- gtk/gtknotebook.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c index 3de4692cc1..9217f12ec8 100644 --- a/gtk/gtknotebook.c +++ b/gtk/gtknotebook.c @@ -2637,7 +2637,7 @@ gtk_notebook_draw (GtkWidget *widget, } } - if (priv->operation == DRAG_OPERATION_REORDER && + if (priv->cur_page && priv->operation == DRAG_OPERATION_REORDER && gtk_cairo_should_draw_window (cr, priv->drag_window)) { cairo_save (cr);