diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-07 13:43:24 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2015-04-07 13:43:24 +0000 |
commit | 96f529b347c2c3c0394a0bc3ad1c6830137847a9 (patch) | |
tree | 1b97a670523f3b0e74c4628e71e968061df85979 /protocols/SkypeWeb/src/http_request.h | |
parent | 4056ab703967ccbba528aebc93802f732ae13884 (diff) |
set avatar 2nd attempt
git-svn-id: http://svn.miranda-ng.org/main/trunk@12652 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/http_request.h')
-rw-r--r-- | protocols/SkypeWeb/src/http_request.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/protocols/SkypeWeb/src/http_request.h b/protocols/SkypeWeb/src/http_request.h index 50e9528dfd..b281a8846f 100644 --- a/protocols/SkypeWeb/src/http_request.h +++ b/protocols/SkypeWeb/src/http_request.h @@ -230,8 +230,10 @@ public: url.Insert(0, flags & NLHRF_SSL ? "https://" : "http://");
szUrl = url.GetBuffer();
- pData = Body.ToString();
- dataLength = mir_strlen(pData);
+ if (!pData) {
+ pData = Body.ToString();
+ dataLength = mir_strlen(pData);
+ }
char message[1024];
mir_snprintf(message, SIZEOF(message), "Send request to %s", szUrl);
|