diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-09-16 17:46:05 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-09-16 17:46:05 +0000 |
commit | ab46b98479555c7106087f7d62b6c89f320ca311 (patch) | |
tree | e245d3dce9dfabbeb47aaff36135089613abe026 /protocols/Steam/src/steam_pooling.cpp | |
parent | af54e11be6c1c3c997baae19f9d81526d96cd2aa (diff) |
Steam:
- attempt to fix numerous crashes
git-svn-id: http://svn.miranda-ng.org/main/trunk@15365 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 2dee4115d8..32fe85d905 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 || response->resultCode != HTTP_CODE_OK) + if (!ResponseHttpOk(response)) { if (response != NULL) delete response; |