------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is. http://bugs.kde.org/show_bug.cgi?id=123497 koos.vriezen xs4all nl changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED ------- Additional Comments From koos.vriezen xs4all nl 2006-03-18 14:21 ------- SVN commit 519978 by vriezen: Patch from Jonas Hurrelmann, fix length parsing of MPlayer-from-CVS's output BUG: 123497 M +1 -1 kmplayerprocess.cpp --- trunk/extragear/multimedia/kmplayer/src/kmplayerprocess.cpp #519977:519978 @ -658,7 +658,7 @ } else if (!m_source->identified () && out.startsWith ("ID_LENGTH")) { int pos = out.find ('='); if (pos > 0) { - int l = out.mid (pos + 1).toInt (&ok); + int l = (int) out.mid (pos + 1).toDouble (&ok); if (ok && l >= 0) { m_source->setLength (m_mrl, 10 * l); }