From 95a3a42002745548d2a9a75f10b8b24354e0a9f5 Mon Sep 17 00:00:00 2001 From: jez <> Date: Sun, 23 Dec 2007 09:51:28 +0000 Subject: [PATCH] can see it now - uninitialised variable --- include/XML/strings.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/XML/strings.hpp b/include/XML/strings.hpp index e9296245..c952cec1 100755 --- a/include/XML/strings.hpp +++ b/include/XML/strings.hpp @@ -18,7 +18,7 @@ namespace XML return false; ++s; - for(std::string::const_iterator se; s != se; ++s) + for(std::string::const_iterator se = str.end(); s != se; ++s) { wchar_t c = static_cast(*s); if(!(is_letter(c) ||