Skip to content
Snippets Groups Projects
Commit 3dd26418 authored by Boroondas Gupte's avatar Boroondas Gupte
Browse files

VWR-23239 FIXED memory leak in LLUIString

parent b3bf2d79
Branches
Tags
Loading
......@@ -68,6 +68,8 @@ class LLUIString
LLUIString(const std::string& instring, const LLStringUtil::format_map_t& args);
LLUIString(const std::string& instring) : mArgs(NULL) { assign(instring); }
~LLUIString() { delete mArgs; }
void assign(const std::string& instring);
LLUIString& operator=(const std::string& s) { assign(s); return *this; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment