diff options
author | Squire <squire@lindenlab.com> | 2011-06-17 11:05:31 -0700 |
---|---|---|
committer | Squire <squire@lindenlab.com> | 2011-06-17 11:05:31 -0700 |
commit | f86a488231dc9a629d44a9f6aa6bfc9aa0eb57b4 (patch) | |
tree | bd203f0865fe19735a0774f60625538856991970 /indra/newview/lllogchat.cpp | |
parent | e35cc6f42b4c02f1d7a05083c3b14de6c222f90a (diff) |
CHOP-662 - initial fix to problems with regex characters in Group names
causing the LLDirIterator to crash the viewer when opening chat logs
Diffstat (limited to 'indra/newview/lllogchat.cpp')
-rw-r--r-- | indra/newview/lllogchat.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/lllogchat.cpp b/indra/newview/lllogchat.cpp index efc4e23838..ebb5912ace 100644 --- a/indra/newview/lllogchat.cpp +++ b/indra/newview/lllogchat.cpp @@ -230,7 +230,7 @@ std::string LLLogChat::makeLogFileName(std::string filename) std::string LLLogChat::cleanFileName(std::string filename) { - std::string invalidChars = "\"\'\\/?*:.<>|"; + std::string invalidChars = "\"\'\\/?*:.<>|[]{}~"; // Cannot match glob or illegal filename chars std::string::size_type position = filename.find_first_of(invalidChars); while (position != filename.npos) { |