diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2016-02-07 09:54:16 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2016-02-07 09:54:16 +0000 |
commit | 7bdabace3f6ab47b8571cdec9bfd6f5b2c360b46 (patch) | |
tree | 5d450c2098f6316df8bc3f42c7988c94eb1c2a0d /protocols/SkypeWeb/src/skype_trouter.cpp | |
parent | 941dca4cf7a93100c19a6e3b92e1bc6bf9e71f04 (diff) |
SkypeWeb: files sending
git-svn-id: http://svn.miranda-ng.org/main/trunk@16233 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_trouter.cpp')
-rw-r--r-- | protocols/SkypeWeb/src/skype_trouter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_trouter.cpp b/protocols/SkypeWeb/src/skype_trouter.cpp index e7b1057a49..a539328feb 100644 --- a/protocols/SkypeWeb/src/skype_trouter.cpp +++ b/protocols/SkypeWeb/src/skype_trouter.cpp @@ -142,6 +142,7 @@ void CSkypeProto::TRouterThread(void*) while (errors < POLLING_ERRORS_LIMIT && m_iStatus > ID_STATUS_OFFLINE)
{
TrouterPollRequest *request = new TrouterPollRequest(TRouter.socketIo, TRouter.connId, TRouter.st, TRouter.se, TRouter.sig, TRouter.instance, TRouter.ccid, TRouter.sessId);
+ request->nlc = m_TrouterConnection;
NLHR_PTR response(request->Send(m_hNetlibUser));
delete request;
if (response == NULL)
@@ -171,7 +172,7 @@ void CSkypeProto::TRouterThread(void*) m_hTrouterHealthEvent.Wait();
}
m_TrouterConnection = response->nlc;
- } // fallthrough
+ }
}
m_hTrouterThread = NULL;
m_TrouterConnection = NULL;
|