From 7f388f37e91a395eb5d40292eb98725592bb2956 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Tue, 15 May 2007 23:58:14 +0000 Subject: ouch. don't try to devide by zero when length is 0 / not available. --- lib/service/servicedvb.cpp | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/service/servicedvb.cpp b/lib/service/servicedvb.cpp index 60aeb9fe..173f471b 100644 --- a/lib/service/servicedvb.cpp +++ b/lib/service/servicedvb.cpp @@ -1177,12 +1177,15 @@ RESULT eDVBServicePlay::stop() if (getLength(length)) length = 0; - - int perc = play_position * 100LL / length; - /* only store last play position when between 5% and 95% */ - if ((5 < perc) && (perc < 95)) - m_cue_entries.insert(cueEntry(play_position, 3)); /* last play position */ + if (length) + { + int perc = play_position * 100LL / length; + + /* only store last play position when between 5% and 95% */ + if ((5 < perc) && (perc < 95)) + m_cue_entries.insert(cueEntry(play_position, 3)); /* last play position */ + } m_cuesheet_changed = 1; } } -- cgit v1.2.3