diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-03-24 05:20:04 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-03-24 05:20:04 +0000 |
commit | 41d8d4a261cebffe0036ec91173e0a76554e9ce0 (patch) | |
tree | 3a4896d1c87411f4807d6cd5a7b9feeac6787d6b /protocols | |
parent | 65aaaa950c793e9408a42d352db919d487ef2a2f (diff) |
crash fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@12490 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/SkypeWeb/src/skype_events.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/SkypeWeb/src/skype_events.cpp b/protocols/SkypeWeb/src/skype_events.cpp index ff2efa5fef..d7e661bff4 100644 --- a/protocols/SkypeWeb/src/skype_events.cpp +++ b/protocols/SkypeWeb/src/skype_events.cpp @@ -98,7 +98,7 @@ void CSkypeProto::OnLoginSecond(const NETLIBHTTPREQUEST *response) void CSkypeProto::OnGetRegInfo(const NETLIBHTTPREQUEST *response)
{
- if (response == NULL)
+ if (response == NULL || response->pData == NULL)
return;
std::regex regex;
|