summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2011-12-10 14:37:55 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2011-12-10 14:37:55 +0100
commitda352e63c67c0e998bddbd293f9415d2f54a2b20 (patch)
tree94b1c72d8eb885a45fb595726fdf00d5c590bc3d /config.c
parent7d590428ec87706dd5b432f648c80184beaf989a (diff)
downloadvdr-da352e63c67c0e998bddbd293f9415d2f54a2b20.tar.gz
vdr-da352e63c67c0e998bddbd293f9415d2f54a2b20.tar.bz2
Removed redundant memset() in the ctor of cSatCableNumbers
Diffstat (limited to 'config.c')
-rw-r--r--config.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/config.c b/config.c
index 94f68454..a3f67246 100644
--- a/config.c
+++ b/config.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.c 2.16 2011/12/03 15:21:30 kls Exp $
+ * $Id: config.c 2.17 2011/12/10 14:33:27 kls Exp $
*/
#include "config.h"
@@ -69,7 +69,6 @@ cSatCableNumbers::cSatCableNumbers(int Size, const char *s)
{
size = Size;
array = MALLOC(int, size);
- memset(array, size * sizeof(int), 0);
FromString(s);
}