diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-10-01 10:43:01 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-10-01 10:43:01 +0200 |
commit | f3c99e697fe0dc078f7ce77814bfc871954cd2e4 (patch) | |
tree | 7b561d5cb1e9260831da08efa7c87f690f3022e4 /config.h | |
parent | 13f68c478736e2f9f97607847688781aae77c041 (diff) | |
download | vdr-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.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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); |