summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorandreykproductengine <andreykproductengine@lindenlab.com>2017-11-22 16:48:54 +0200
committerandreykproductengine <andreykproductengine@lindenlab.com>2017-11-22 16:48:54 +0200
commit629840e9a80d47d7224dbb6d557af07f194ca099 (patch)
tree2d54c501e2bd963a6d7079895e4ef957b0fe074d /indra
parentf1c76a376c1aeb194ddf7cfddc7e50fd4a9645af (diff)
MAINT-1804 Fixed bulk upload failures due to non-ansi symbols in names
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llfilepicker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfilepicker.cpp b/indra/newview/llfilepicker.cpp
index 7e92643b93..125a823e58 100644
--- a/indra/newview/llfilepicker.cpp
+++ b/indra/newview/llfilepicker.cpp
@@ -341,7 +341,7 @@ BOOL LLFilePicker::getMultipleOpenFiles(ELoadFilter filter)
dirname = filename + "\\";
else
mFiles.push_back(dirname + filename);
- tptrw += filename.size();
+ tptrw += wcslen(tptrw);
}
}
}