summaryrefslogtreecommitdiff
path: root/config.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-10-01 10:43:01 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-10-01 10:43:01 +0200
commitf3c99e697fe0dc078f7ce77814bfc871954cd2e4 (patch)
tree7b561d5cb1e9260831da08efa7c87f690f3022e4 /config.h
parent13f68c478736e2f9f97607847688781aae77c041 (diff)
downloadvdr-f3c99e697fe0dc078f7ce77814bfc871954cd2e4.tar.gz
vdr-f3c99e697fe0dc078f7ce77814bfc871954cd2e4.tar.bz2
Fixed a crash in cConfig::Load() when compiling on the PPC
Diffstat (limited to 'config.h')
-rw-r--r--config.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/config.h b/config.h
index 47595f5c..d33de6ad 100644
--- a/config.h
+++ b/config.h
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: config.h 1.229 2005/09/26 21:40:16 kls Exp $
+ * $Id: config.h 1.230 2005/10/01 10:41:33 kls Exp $
*/
#ifndef __CONFIG_H
@@ -91,7 +91,7 @@ public:
const char *FileName(void) { return fileName; }
bool Load(const char *FileName = NULL, bool AllowComments = false, bool MustExist = false)
{
- Clear();
+ cConfig<T>::Clear();
if (FileName) {
free(fileName);
fileName = strdup(FileName);