diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-04-18 14:16:32 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-04-18 14:16:32 +0200 |
commit | d7c5e26d31fea089646b0b12e5c58ea92aec5b26 (patch) | |
tree | c25132aee187f751b8b696af90f44568857e8760 /ci.c | |
parent | 0f82d5c01424425454d476602aa50b4f6c0c7b04 (diff) | |
download | vdr-d7c5e26d31fea089646b0b12e5c58ea92aec5b26.tar.gz vdr-d7c5e26d31fea089646b0b12e5c58ea92aec5b26.tar.bz2 |
Closing CA file handle in case no LL firmware is present
Diffstat (limited to 'ci.c')
-rw-r--r-- | ci.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: ci.c 1.11 2003/04/18 13:48:47 kls Exp $ + * $Id: ci.c 1.12 2003/04/18 14:16:32 kls Exp $ */ /* XXX TODO @@ -1320,6 +1320,7 @@ cCiHandler *cCiHandler::CreateCiHandler(const char *FileName) } else LOG_ERROR_STR(FileName); + close(fd_ca); } return NULL; } |