[mythtv] [mythtv-commits] mythtv commit: r18315 by paulh

cal cal at graggrag.com
Fri Sep 19 10:32:38 UTC 2008


mythtv at cvs.mythtv.org wrote:
>       Author: paulh
>         Date: 2008-09-17 21:54:19 +0000 (Wed, 17 Sep 2008)
> New Revision: 18315
>    Changeset: http://cvs.mythtv.org/trac/changeset/18315
> 
> Modified:
> 
>    trunk/mythtv/libs/libmyth/mediamonitor-unix.cpp
> 
> Log:
> 
> Fix an infinite loop introduced in [18300]. Fixes #5725.

On my system, this change still leaves it funky. With VB_MEDIA but not VB_EXTRA,
or VB_EXTRA but not VB_MEDIA, it still goes into the 'while (!stream.thatNeverEnds())'.

{{{
--- mythtv.orig/libs/libmyth/mediamonitor-unix.cpp
+++ mythtv/libs/libmyth/mediamonitor-unix.cpp
@@ -225,7 +225,7 @@
         return ret;
     }
 
-    if (print_verbose_messages & VB_MEDIA+VB_EXTRA) 
+    if (print_verbose_messages & VB_MEDIA & VB_EXTRA)
     {
         udevinfo->setReadChannel(QProcess::StandardError);
 
}}}

cheers, Cal


More information about the mythtv-dev mailing list