diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-09-18 18:50:56 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-09-18 18:50:56 +0000 |
commit | c087d67fc1cccd443a648ae98c670df3dfd80c0f (patch) | |
tree | 98cbe3d458aa8a606240369c04e33ca237633b3d /protocols | |
parent | 0335163ed62061dbd09d8a81285e4d3b5ac1ddf7 (diff) |
Steam:
- attempt to fix one more crash (fixes #1024)
git-svn-id: http://svn.miranda-ng.org/main/trunk@15385 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Steam/src/http_request.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/Steam/src/http_request.h b/protocols/Steam/src/http_request.h index 3e91209907..30d1e307be 100644 --- a/protocols/Steam/src/http_request.h +++ b/protocols/Steam/src/http_request.h @@ -11,7 +11,7 @@ public: HttpResponse(const NETLIBHTTPREQUEST* response, const NETLIBHTTPREQUEST* request = NULL)
{
- request = request;
+ this->request = request;
isEmptyResponse = (response == NULL);
if (response)
{
|