mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed processing SVDRP client responses in case the caller doesn't want the actual response strings
This commit is contained in:
parent
5cb66f8090
commit
040f842e6c
@ -2845,6 +2845,8 @@ Johann Friedrichs <johann.friedrichs@web.de>
|
||||
for fixing handling timers during the change from DST to winter time
|
||||
for fixing a possible crash with plugins that retrieve player information after a
|
||||
replay has been stopped, but before the replay control has been destroyed
|
||||
for reporting a problem in processing SVDRP client responses in case the caller doesn't
|
||||
want the actual response strings
|
||||
|
||||
Timo Helkio <timolavi@mbnet.fi>
|
||||
for reporting a hangup when replaying a TS recording with subtitles activated
|
||||
|
2
HISTORY
2
HISTORY
@ -9320,3 +9320,5 @@ Video Disk Recorder Revision History
|
||||
2018-03-19: Version 2.4.0
|
||||
|
||||
- Updated the Ukrainian OSD texts (thanks to Yarema Aka Knedlyk).
|
||||
- Fixed processing SVDRP client responses in case the caller doesn't want the actual
|
||||
response strings (reported by Johann Friedrichs).
|
||||
|
5
svdrp.c
5
svdrp.c
@ -10,7 +10,7 @@
|
||||
* and interact with the Video Disk Recorder - or write a full featured
|
||||
* graphical interface that sits on top of an SVDRP connection.
|
||||
*
|
||||
* $Id: svdrp.c 4.36 2018/03/18 10:43:53 kls Exp $
|
||||
* $Id: svdrp.c 4.37 2018/03/19 12:16:33 kls Exp $
|
||||
*/
|
||||
|
||||
#include "svdrp.h"
|
||||
@ -480,8 +480,11 @@ bool cSVDRPClient::Process(cStringList *Response)
|
||||
|
||||
bool cSVDRPClient::Execute(const char *Command, cStringList *Response)
|
||||
{
|
||||
cStringList Dummy;
|
||||
if (Response)
|
||||
Response->Clear();
|
||||
else
|
||||
Response = &Dummy;
|
||||
return Send(Command) && Process(Response);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user