diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-03 09:31:13 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-03 09:31:13 +0000 |
commit | f4ef5c3908e1a4ac3c32c0b92bea8e6db5bce618 (patch) | |
tree | 7feb5374b84bdb8cbf93ca36eac0de271ecdd4c2 /protocols | |
parent | 079747e6cf38257134237cbbd5f4e7857273afdc (diff) |
one more login fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@12585 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/SkypeWeb/src/skype_events.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/skype_events.cpp b/protocols/SkypeWeb/src/skype_events.cpp index 945770255a..eb920659c5 100644 --- a/protocols/SkypeWeb/src/skype_events.cpp +++ b/protocols/SkypeWeb/src/skype_events.cpp @@ -96,12 +96,11 @@ void CSkypeProto::OnLoginSecond(const NETLIBHTTPREQUEST *response) void CSkypeProto::OnGetRegInfo(const NETLIBHTTPREQUEST *response)
{
- if (response == NULL || response->pData == NULL)
+ if (response == NULL)
return;
std::regex regex;
std::smatch match;
- std::string content = response->pData;
for (int i = 0; i < response->headersCount; i++) {
if (!mir_strcmpi(response->headers[i].szName, "Set-RegistrationToken"))
{
|