From 2432a2ed511fed406769ddcee0b97a0ee12a4538 Mon Sep 17 00:00:00 2001 From: o9000 Date: Thu, 22 Jan 2015 17:31:56 +0000 Subject: [PATCH] Prevent division by zero in strange circumstances when the panel has size 0 git-svn-id: http://tint2.googlecode.com/svn/trunk@665 121b4492-b84c-0410-8b4c-0d4edfb3f3cc --- src/systray/systraybar.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/systray/systraybar.c b/src/systray/systraybar.c index e7e413f..7d15d6d 100644 --- a/src/systray/systraybar.c +++ b/src/systray/systraybar.c @@ -171,6 +171,9 @@ void on_change_systray (void *obj) { // here, systray.area.posx/posy are defined by rendering engine. so we can calculate position of tray icon. Systraybar *sysbar = obj; + if (sysbar->icons_per_column == 0 || sysbar->icons_per_row == 0) + return; + Panel *panel = sysbar->area.panel; int i, posx, posy; int start = panel->area.bg->border.width + panel->area.paddingy + systray.area.bg->border.width + systray.area.paddingy + sysbar->marging/2;