From 88d186b0a0e5778fcfc6d487356cc91f903c7b76 Mon Sep 17 00:00:00 2001 From: yanmorin <yanmorin> Date: Fri, 14 Oct 2005 14:50:39 +0000 Subject: [PATCH] Don't compare iterator to null --- src/config/config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config/config.cpp b/src/config/config.cpp index a1e748cfa4..c8dc5e63b2 100644 --- a/src/config/config.cpp +++ b/src/config/config.cpp @@ -63,7 +63,7 @@ ConfigTree::addConfigTreeItem(const std::string& section, const ConfigTreeItem i iter = _sections.find(section); } // be prudent here - if (iter != NULL && iter != _sections.end()) { + if (iter != _sections.end()) { std::string name = item.getName(); if ( iter->second->find(name) == iter->second->end()) { -- GitLab