From 03db06c52cad84ecb2bf0b3fff8a518ff895dc19 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Fri, 15 May 2015 13:31:23 +0000 Subject: - 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 --- protocols/MSN/src/msn_auth.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'protocols/MSN/src/msn_auth.cpp') 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; } -- cgit v1.2.3