summaryrefslogtreecommitdiff
path: root/protocols/Skype/src/string_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/Skype/src/string_list.h')
-rw-r--r--protocols/Skype/src/string_list.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Skype/src/string_list.h b/protocols/Skype/src/string_list.h
index df1ce7b0fa..60921746b5 100644
--- a/protocols/Skype/src/string_list.h
+++ b/protocols/Skype/src/string_list.h
@@ -18,10 +18,10 @@ public:
wchar_t *p = ::wcstok(data, delimeters);
if (p)
{
- this->strings.push_back(::mir_wstrdup(p));
+ this->strings.push_back(p);
while (p = wcstok(NULL, delimeters))
{
- this->strings.push_back(::mir_wstrdup(p));
+ this->strings.push_back(p);
}
}
::mir_free(data);