summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb/src/http_request.h
diff options
context:
space:
mode:
authorMikalaiR <nikolay.romanovich@narod.ru>2015-11-13 18:26:40 +0000
committerMikalaiR <nikolay.romanovich@narod.ru>2015-11-13 18:26:40 +0000
commit85c9a8f36922b56fcf9b42842dfe37902b028ce0 (patch)
tree9d09243e829f278764f8a73600eaa47b4f3016bc /protocols/SkypeWeb/src/http_request.h
parent7b5190da46bf7ed59c78cc1d521a32cf82db870e (diff)
SkypeWeb: images uploading support (part 1)
git-svn-id: http://svn.miranda-ng.org/main/trunk@15718 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/http_request.h')
-rw-r--r--protocols/SkypeWeb/src/http_request.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/http_request.h b/protocols/SkypeWeb/src/http_request.h
index 4fc62c02b7..90d552358c 100644
--- a/protocols/SkypeWeb/src/http_request.h
+++ b/protocols/SkypeWeb/src/http_request.h
@@ -240,6 +240,7 @@ public:
cbSize = sizeof(NETLIBHTTPREQUEST);
flags = NLHRF_HTTP11 | NLHRF_SSL | NLHRF_DUMPASTEXT;
requestType = type;
+ pData = NULL;
}
HttpRequest(int type, HttpRequestUrlFormat, LPCSTR urlFormat, ...)
@@ -249,6 +250,7 @@ public:
flags = NLHRF_HTTP11 | NLHRF_SSL | NLHRF_DUMPASTEXT;
requestType = type;
va_end(formatArgs);
+ pData = NULL;
}
~HttpRequest()