summaryrefslogtreecommitdiff
path: root/src/chatlogger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/chatlogger.cpp')
-rw-r--r--src/chatlogger.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/chatlogger.cpp b/src/chatlogger.cpp
index c09249f12..0343a7190 100644
--- a/src/chatlogger.cpp
+++ b/src/chatlogger.cpp
@@ -138,7 +138,8 @@ std::string ChatLogger::getDir() const
std::string ChatLogger::secureName(std::string &name) const
{
- for (unsigned int f = 0, sz = name.length(); f < sz; f ++)
+ const unsigned int sz = name.length();
+ for (unsigned int f = 0; f < sz; f ++)
{
const unsigned char ch = name[f];
if ((ch < '0' || ch > '9')