From ec7081a5db22f7c8766d824e4852910b714d1028 Mon Sep 17 00:00:00 2001 From: Harish Krishnaswamy Date: Thu, 17 Nov 2005 04:29:31 +0000 Subject: Fix a division-by-zero error crasher svn path=/trunk/; revision=30630 --- widgets/misc/ChangeLog | 5 +++++ widgets/misc/e-attachment-bar.c | 2 ++ 2 files changed, 7 insertions(+) (limited to 'widgets') diff --git a/widgets/misc/ChangeLog b/widgets/misc/ChangeLog index d2e2b007c3..3e431df074 100644 --- a/widgets/misc/ChangeLog +++ b/widgets/misc/ChangeLog @@ -1,3 +1,8 @@ +2005-11-17 Harish Krishnaswamy + + * e-attachment-bar.c: (update), (e_attachment_bar_set_width): + Fix a division-by-zero error crasher. + 2005-11-15 Srinivasa Ragavan * e-attachment-bar.[ch] (e_attachment_bar_get_all_attachments): Added diff --git a/widgets/misc/e-attachment-bar.c b/widgets/misc/e-attachment-bar.c index 5de718f914..15d8331e5b 100644 --- a/widgets/misc/e-attachment-bar.c +++ b/widgets/misc/e-attachment-bar.c @@ -415,6 +415,7 @@ update (EAttachmentBar *bar) calculate_height_width(bar, &width, &height); per_col = bar_width / width; + per_col = per_col ? per_col : 1; rows = (bar->priv->num_attachments + per_col -1 )/ per_col; gtk_widget_set_size_request ((GtkWidget *)bar, bar_width, rows * height); } @@ -505,6 +506,7 @@ e_attachment_bar_set_width(EAttachmentBar *bar, int bar_width) calculate_height_width(bar, &width, &height); per_col = bar_width / width; + per_col = per_col ? per_col : 1; rows = (bar->priv->num_attachments + per_col - 1) / per_col; gtk_widget_set_size_request ((GtkWidget *)bar, bar_width, rows * height); } -- cgit v1.2.3