summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-03-24 05:20:04 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-03-24 05:20:04 +0000
commit41d8d4a261cebffe0036ec91173e0a76554e9ce0 (patch)
tree3a4896d1c87411f4807d6cd5a7b9feeac6787d6b /protocols
parent65aaaa950c793e9408a42d352db919d487ef2a2f (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.cpp2
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;