mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed the return value of the svdrpsend.pl script in case of an error
This commit is contained in:
parent
fdd82cd972
commit
570656b073
@ -2734,3 +2734,6 @@ Holger Dengler <holger.dengler@gmx.de>
|
||||
|
||||
Michael Eiler <eiler.mike@gmail.com>
|
||||
- reporting a crash in case cSkins::Message() is called from a background thread
|
||||
|
||||
Jonas Diemer <jonasdiemer@googlemail.com>
|
||||
for fixing the return value of the svdrpsend.pl script in case of an error
|
||||
|
2
HISTORY
2
HISTORY
@ -6659,3 +6659,5 @@ Video Disk Recorder Revision History
|
||||
Christoph Haubrich).
|
||||
- cSkins::Message() now blocks calls from background threads (thanks to Michael
|
||||
Eiler for reporting a crash in such a scenario).
|
||||
- Fixed the return value of the svdrpsend.pl script in case of an error (thanks to
|
||||
Jonas Diemer).
|
||||
|
@ -52,6 +52,6 @@ sub Error
|
||||
{
|
||||
print STDERR "@_\n";
|
||||
close(SOCK);
|
||||
exit 0;
|
||||
exit 1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user