summaryrefslogtreecommitdiff
path: root/ci.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2006-07-22 13:43:01 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2006-07-22 13:43:01 +0200
commitee4fa90032d903b6030e7576af2b1d2e0d12ada8 (patch)
treeeb321f73f66afe94cfb3710d9d3785f33b6c34e6 /ci.c
parent8f3ae72e9d1d3b1d00945169930bb8f78fc0567d (diff)
downloadvdr-ee4fa90032d903b6030e7576af2b1d2e0d12ada8.tar.gz
vdr-ee4fa90032d903b6030e7576af2b1d2e0d12ada8.tar.bz2
Added a missing initialization of 'mutex' in cCiMenu::cCiMenu() and removed some superfluous semicolons in ci.c
Diffstat (limited to 'ci.c')
-rw-r--r--ci.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/ci.c b/ci.c
index 863be533..e6bfa72b 100644
--- a/ci.c
+++ b/ci.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: ci.c 1.42 2006/01/07 15:07:16 kls Exp $
+ * $Id: ci.c 1.43 2006/07/22 13:40:30 kls Exp $
*/
#include "ci.h"
@@ -1387,6 +1387,7 @@ bool cCiMMI::SendCloseMMI(void)
cCiMenu::cCiMenu(cCiMMI *MMI, bool Selectable)
{
mmi = MMI;
+ mutex = NULL;
selectable = Selectable;
titleText = subTitleText = bottomText = NULL;
numEntries = 0;
@@ -1445,8 +1446,8 @@ cCiEnquiry::cCiEnquiry(cCiMMI *MMI)
{
mmi = MMI;
text = NULL;
- blind = false;;
- expectedLength = 0;;
+ blind = false;
+ expectedLength = 0;
}
cCiEnquiry::~cCiEnquiry()