From 99dfca4ba34f7b00bc64605772046bccd19e148d Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Mon, 1 Feb 2010 16:21:05 +0100 Subject: Fix crashes (and hopefully bug 212219) Thanks to Thomas Gahr for the fix --- src/tabbar.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/tabbar.cpp b/src/tabbar.cpp index 12745772..7326d7af 100644 --- a/src/tabbar.cpp +++ b/src/tabbar.cpp @@ -153,8 +153,8 @@ void TabBar::showTabPreview(int tab) WebTab *view = mv->webTab(tab); WebTab *currentView = mv->webTab(currentIndex()); - // should fix bug #212219 - if(!currentView) + // check if view && currentView exist before using them :) + if(!currentView || !view) return; int w = tabSizeHint(tab).width(); -- cgit v1.2.1