diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-09-13 08:03:11 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-09-13 08:03:11 +0000 |
commit | f5584d8ae977f278ae9735f53ab868c8574c2451 (patch) | |
tree | eb44163dde10e6ced19b82c151191f9df7656e87 /protocols/Steam/src/steam_pooling.cpp | |
parent | 65d21daad01ddb2323d87ef343cfeef8fde5650b (diff) |
Steam: fix login
git-svn-id: http://svn.miranda-ng.org/main/trunk@15338 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_pooling.cpp')
-rw-r--r-- | protocols/Steam/src/steam_pooling.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/steam_pooling.cpp b/protocols/Steam/src/steam_pooling.cpp index 0c1f50e9fd..2dee4115d8 100644 --- a/protocols/Steam/src/steam_pooling.cpp +++ b/protocols/Steam/src/steam_pooling.cpp @@ -180,7 +180,7 @@ void CSteamProto::PollingThread(void*) HttpResponse *response = request->Send(m_hNetlibUser); delete request; - if (response == NULL || response->resultCode != HTTP_CODE_OK) + if (!response || response->resultCode != HTTP_CODE_OK) { if (response != NULL) delete response; |