diff options
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | dxr3interface.c | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -271,3 +271,4 @@ NOTE: I havent found time to include all of the languages, will be done in pre2 - added support for vdr-1.3.13 - added a small patch, containing mainly Finnish translation updates but also a few other small ones thanks Ville Skyta <ville.skytta@iki.fi> +- some little fixes in the dx3interface: if we cant open control fifo plugins retuns now correct error message diff --git a/dxr3interface.c b/dxr3interface.c index 662a891..63522d1 100644 --- a/dxr3interface.c +++ b/dxr3interface.c @@ -61,6 +61,7 @@ static int Dxr3Open(const char *Name, int n, int Mode) if (fd < 0) { cLog::Instance() << "Unable to open " << FileName << "\n"; + return 0; } return fd; } |