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

Paul Harrison mythtv at dsl.pipex.com
Sun Sep 21 21:09:13 UTC 2008


cal wrote:
> 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
>
>   
Fixed properly this time ;-)

Paul H.


More information about the mythtv-dev mailing list