mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed a wrong variable name in cFileName::cFileName()
This commit is contained in:
parent
c2634a7ccf
commit
712523f004
3
HISTORY
3
HISTORY
@ -9348,7 +9348,7 @@ Video Disk Recorder Revision History
|
||||
Senzel).
|
||||
- Official release.
|
||||
|
||||
2019-05-28: Version 2.4.1
|
||||
2019-05-29: Version 2.4.1
|
||||
|
||||
- Fixed handling the tfRecording flag in the SVDRP commands MODT and UPDT (reported
|
||||
by Johann Friedrichs).
|
||||
@ -9414,3 +9414,4 @@ Video Disk Recorder Revision History
|
||||
frame size.
|
||||
- Fixed inconsistent behavior in case only certain devices are used (selected by the '-D'
|
||||
option).
|
||||
- Fixed a wrong variable name in cFileName::cFileName().
|
||||
|
@ -4,7 +4,7 @@
|
||||
* See the main source file 'vdr.c' for copyright information and
|
||||
* how to reach the author.
|
||||
*
|
||||
* $Id: recording.c 4.26 2019/05/07 09:22:34 kls Exp $
|
||||
* $Id: recording.c 4.27 2019/05/28 21:47:32 kls Exp $
|
||||
*/
|
||||
|
||||
#include "recording.h"
|
||||
@ -2896,7 +2896,7 @@ cFileName::cFileName(const char *FileName, bool Record, bool Blocking, bool IsPe
|
||||
// Prepare the file name:
|
||||
fileName = MALLOC(char, strlen(FileName) + RECORDFILESUFFIXLEN);
|
||||
if (!fileName) {
|
||||
esyslog("ERROR: can't copy file name '%s'", fileName);
|
||||
esyslog("ERROR: can't copy file name '%s'", FileName);
|
||||
return;
|
||||
}
|
||||
strcpy(fileName, FileName);
|
||||
|
Loading…
Reference in New Issue
Block a user