mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed handling characters above 0xEF in SVDRP
This commit is contained in:
parent
693033f390
commit
bd48a49712
1
HISTORY
1
HISTORY
@ -561,3 +561,4 @@ Video Disk Recorder Revision History
|
|||||||
- Moved the channel display to the bottom of the screen.
|
- Moved the channel display to the bottom of the screen.
|
||||||
- Displaying the frame counter in the replay progress display only when editing
|
- Displaying the frame counter in the replay progress display only when editing
|
||||||
a mark.
|
a mark.
|
||||||
|
- Fixed handling characters above 0xEF in SVDRP.
|
||||||
|
4
svdrp.c
4
svdrp.c
@ -10,7 +10,7 @@
|
|||||||
* and interact with the Video Disk Recorder - or write a full featured
|
* and interact with the Video Disk Recorder - or write a full featured
|
||||||
* graphical interface that sits on top of an SVDRP connection.
|
* graphical interface that sits on top of an SVDRP connection.
|
||||||
*
|
*
|
||||||
* $Id: svdrp.c 1.19 2001/07/14 09:45:55 kls Exp $
|
* $Id: svdrp.c 1.20 2001/07/22 13:58:48 kls Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define _GNU_SOURCE
|
#define _GNU_SOURCE
|
||||||
@ -941,7 +941,7 @@ void cSVDRP::Process(void)
|
|||||||
if (numChars > 0)
|
if (numChars > 0)
|
||||||
numChars--;
|
numChars--;
|
||||||
}
|
}
|
||||||
else if (c <= 0x03 || c == 0x0D || 0xF0 <= c) {
|
else if (c <= 0x03 || c == 0x0D) {
|
||||||
// ignore control characters
|
// ignore control characters
|
||||||
}
|
}
|
||||||
else if (numChars < sizeof(cmdLine) - 1) {
|
else if (numChars < sizeof(cmdLine) - 1) {
|
||||||
|
Loading…
Reference in New Issue
Block a user