mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added a missing error report to cCuttingThread::Action()
This commit is contained in:
parent
fd60644895
commit
6a737033ad
@ -1520,6 +1520,7 @@ Udo Richter <udo_richter@gmx.de>
|
||||
for fixing handling detached processes in SystemExec()
|
||||
for fixing handling single byte characters >0x7F in Utf8ToArray()
|
||||
for fixing clearing color buttons in the 'curses' skin
|
||||
for adding a missing error report to cCuttingThread::Action()
|
||||
|
||||
Sven Kreiensen <svenk@kammer.uni-hannover.de>
|
||||
for his help in keeping 'channels.conf.terr' up to date
|
||||
|
2
HISTORY
2
HISTORY
@ -5403,3 +5403,5 @@ Video Disk Recorder Revision History
|
||||
varable in the Makefile (thanks to Thomas Schmidt).
|
||||
- The SVDRP command LSTC can now list the channels with group separators if the
|
||||
option ':groups' is given (thanks to Andreas Mair).
|
||||
- Added a missing error report to cCuttingThread::Action() (thanks to Udo
|
||||
Richter).
|
||||
|
6
cutter.c
6
cutter.c
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: cutter.c 1.16 2006/07/30 10:22:08 kls Exp $
|
||||
* $Id: cutter.c 1.17 2007/08/25 10:33:18 kls Exp $
|
||||
*/
|
||||
|
||||
#include "cutter.h"
|
||||
@ -110,8 +110,10 @@ void cCuttingThread::Action(void)
|
||||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
else {
|
||||
error = "index";
|
||||
break;
|
||||
}
|
||||
|
||||
// Write one frame:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user