From 76bdc9681799a7ed17be1cddbe7b91adef242373 Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Thu, 28 Mar 2024 08:15:31 -0700 Subject: Removed seemingly pointless config file checks * When config file can't be read, it will be reported by Configuration::init. * When config file can't be written, xmlNewTextWriterFilename will probably return nullptr. --- src/client.cpp | 25 +------------------------ 1 file changed, 1 insertion(+), 24 deletions(-) (limited to 'src/client.cpp') diff --git a/src/client.cpp b/src/client.cpp index 2a854bc0..afd53fa3 100644 --- a/src/client.cpp +++ b/src/client.cpp @@ -1175,30 +1175,7 @@ void Client::initConfiguration() config.setValue("ChatLogLength", 128); config.setValue("disableTransparency", false); - // Checking if the configuration file exists... otherwise create it with - // default options. - FILE *configFile = nullptr; - std::string configPath; - - configPath = mConfigDir + "/config.xml"; - - configFile = fopen(configPath.c_str(), "r"); - - // If we can't read it, it doesn't exist ! - if (!configFile) - { - // We reopen the file in write mode and we create it - configFile = fopen(configPath.c_str(), "wt"); - } - if (!configFile) - { - logger->log("Can't create %s. Using defaults.", configPath.c_str()); - } - else - { - fclose(configFile); - config.init(configPath); - } + config.init(mConfigDir + "config.xml"); } /** -- cgit v1.2.3-70-g09d2