summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--indra/llcommon/llprocesslauncher.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llprocesslauncher.cpp b/indra/llcommon/llprocesslauncher.cpp
index adad3546fe..5791d14ec0 100644
--- a/indra/llcommon/llprocesslauncher.cpp
+++ b/indra/llcommon/llprocesslauncher.cpp
@@ -92,7 +92,7 @@ static std::string quote(const std::string& str)
{
result.append("\\");
}
- result.append(*ci);
+ result.push_back(*ci);
}
return result + "\"";
}