summaryrefslogtreecommitdiff
path: root/indra/newview/lllogchat.cpp
diff options
context:
space:
mode:
authorSquire <squire@lindenlab.com>2011-06-21 21:42:32 -0700
committerSquire <squire@lindenlab.com>2011-06-21 21:42:32 -0700
commit80b81279a2b261e2eaeef86d4871090c44f42d80 (patch)
tree423fe2278d9168038c2373a3fc721812ee5f3f12 /indra/newview/lllogchat.cpp
parent84c44b8f8ec43d4709bbcd335ab3d020d77a29b8 (diff)
parent8c653512500980f2e5a3c1a0c9397351fae3bce4 (diff)
CHOP-662 Merged into viewer-development-crash-horde
Diffstat (limited to 'indra/newview/lllogchat.cpp')
-rw-r--r--indra/newview/lllogchat.cpp2
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)
{