From 15940d1d8b71c9c3c73ea2bad5800ee09819e541 Mon Sep 17 00:00:00 2001 From: Carlos Garcia Campos Date: Sun, 23 Nov 2008 16:56:39 +0000 Subject: Make sure find_result is never < 0 which causes a crash while searching. 2008-11-23 Carlos Garcia Campos * shell/ev-view.c: (ev_view_find_previous): Make sure find_result is never < 0 which causes a crash while searching. Fixes bug #558377. svn path=/trunk/; revision=3273 --- (limited to 'shell/ev-view.c') diff --git a/shell/ev-view.c b/shell/ev-view.c index 9c575d2..02a2783 100644 --- a/shell/ev-view.c +++ b/shell/ev-view.c @@ -5181,7 +5181,7 @@ ev_view_find_previous (EvView *view) if (view->find_result < 0) { jump_to_find_page (view, EV_VIEW_FIND_PREV, -1); - view->find_result = ev_view_find_get_n_results (view, view->current_page) - 1; + view->find_result = MAX (0, ev_view_find_get_n_results (view, view->current_page) - 1); jump_to_find_result (view); } else { jump_to_find_result (view); -- cgit v0.9.1