diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-05-31 19:34:11 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-05-31 19:34:11 +0000 |
commit | 21a8c709b8579e5a1b33f509278930e28256ebd6 (patch) | |
tree | 08673a62149d59910f8ea9756b9a7dac509dc71d /plugins | |
parent | c207d9fda896e759a2ffdffc0d46608040c1ac65 (diff) |
Dropbox: one more time
git-svn-id: http://svn.miranda-ng.org/main/trunk@13950 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Dropbox/src/http_request.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dropbox/src/http_request.h b/plugins/Dropbox/src/http_request.h index b8febb4192..21c14b456b 100644 --- a/plugins/Dropbox/src/http_request.h +++ b/plugins/Dropbox/src/http_request.h @@ -172,7 +172,7 @@ public: __inline explicit NetlibPtr(NETLIBHTTPREQUEST *p) : _p(p) {}
__inline NETLIBHTTPREQUEST* operator=(NETLIBHTTPREQUEST *p)
{
- if (p)
+ if (_p)
CallService(MS_NETLIB_FREEHTTPREQUESTSTRUCT, 0, (LPARAM)(NETLIBHTTPREQUEST*)_p);
_p = p;
return _p;
|