diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-05-31 18:43:25 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-05-31 18:43:25 +0000 |
commit | 3a5d553fd245800614fea26be3dd428b4db101e2 (patch) | |
tree | f992bf8c03b7ccc13f5b35914c74f982e85f270b /plugins/Dropbox | |
parent | d417fd585c4509812382def467e7b51991491f83 (diff) |
Dropbox: fixed wrong arg
git-svn-id: http://svn.miranda-ng.org/main/trunk@13946 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Dropbox')
-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 dc0c006b47..b8febb4192 100644 --- a/plugins/Dropbox/src/http_request.h +++ b/plugins/Dropbox/src/http_request.h @@ -173,7 +173,7 @@ public: __inline NETLIBHTTPREQUEST* operator=(NETLIBHTTPREQUEST *p)
{
if (p)
- CallService(MS_NETLIB_FREEHTTPREQUESTSTRUCT, 0, (LPARAM)(NETLIBHTTPREQUEST*)p);
+ CallService(MS_NETLIB_FREEHTTPREQUESTSTRUCT, 0, (LPARAM)(NETLIBHTTPREQUEST*)_p);
_p = p;
return _p;
}
|