summaryrefslogtreecommitdiff
path: root/protocols/MSN/src/msn_auth.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-05-15 13:31:23 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-05-15 13:31:23 +0000
commit03db06c52cad84ecb2bf0b3fff8a518ff895dc19 (patch)
tree33051c9755dca9745607c6fafd233fc5f5f307b6 /protocols/MSN/src/msn_auth.cpp
parent714b5dfb8f159c8d54ef42c905c3c85f4b4e7962 (diff)
- crash fix in chats;
- static buffer returned, now with buffer overrun control; - warnings fixed git-svn-id: http://svn.miranda-ng.org/main/trunk@13604 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MSN/src/msn_auth.cpp')
-rw-r--r--protocols/MSN/src/msn_auth.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/protocols/MSN/src/msn_auth.cpp b/protocols/MSN/src/msn_auth.cpp
index 0f3b7a9f4d..27174c1232 100644
--- a/protocols/MSN/src/msn_auth.cpp
+++ b/protocols/MSN/src/msn_auth.cpp
@@ -571,7 +571,8 @@ static int CopyCookies(NETLIBHTTPREQUEST *nlhrReply, NETLIBHTTPHEADER *hdr)
if (hdr) {
if (*hdr->szValue) strcat (hdr->szValue, "; ");
strcat (hdr->szValue, nlhrReply->headers[i].szValue);
- } else nSize += strlen(nlhrReply->headers[i].szValue) + 2;
+ }
+ else nSize += (int)strlen(nlhrReply->headers[i].szValue) + 2;
}
return nSize;
}