summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HISTORY1
-rw-r--r--displaychannel.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/HISTORY b/HISTORY
index b79de39..d3cb257 100644
--- a/HISTORY
+++ b/HISTORY
@@ -101,3 +101,4 @@ Version 0.0.6
est. bitrate) in detailed recording view
- Added channel logos in main menu timers list
- Changed channel info icons in DisplayChannel
+- Fixed a possible division by zero in DisplayChannel
diff --git a/displaychannel.c b/displaychannel.c
index 5245599..ea6a86a 100644
--- a/displaychannel.c
+++ b/displaychannel.c
@@ -464,6 +464,7 @@ tColor cNopacityDisplayChannel::DrawProgressbarBackground(int left, int top, int
tColor clr1 = Theme.Color(clrProgressBar);
tColor clr2 = Theme.Color(clrProgressBarBlend);
tColor clr = 0x00000000;
+ width = (width==0)?1:width;
int step = width / 256;
int alpha = 0x0;
int alphaStep;