diff options
author | George Hazan <george.hazan@gmail.com> | 2016-10-04 17:49:19 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-10-04 17:49:19 +0000 |
commit | 65014cc73c6f302923e2cf6f5c2b59f23e7884a3 (patch) | |
tree | 555d8e3325a1a97cf6a908cc905bdb69113d839c /protocols/MSN | |
parent | de73f6239e174ae95a863ecd7b66809b54110626 (diff) |
wanwarning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@17353 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MSN')
-rw-r--r-- | protocols/MSN/src/skylogin/login.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/protocols/MSN/src/skylogin/login.c b/protocols/MSN/src/skylogin/login.c index b7931390b2..406ebe279e 100644 --- a/protocols/MSN/src/skylogin/login.c +++ b/protocols/MSN/src/skylogin/login.c @@ -284,7 +284,7 @@ static int SendAuthentificationBlobLS(Skype_Inst *pInst, LSConnection *pConn, co ObjOauth.Family = OBJ_FAMILY_STRING;
ObjOauth.Id = OBJ_ID_OAUTH;
ObjOauth.Value.Memory.Memory = (uchar *)User;
- ObjOauth.Value.Memory.MsZ = strlen(User);
+ ObjOauth.Value.Memory.MsZ = (ulong)strlen(User);
WriteObject(&Browser, ObjOauth);
ObjVer.Family = OBJ_FAMILY_STRING;
@@ -343,9 +343,6 @@ static int SendAuthentificationBlobLS(Skype_Inst *pInst, LSConnection *pConn, co ManageObjects(&Browser, BSize, &Response);
for (Idx = 0; Idx < Response.NbObj; Idx++)
{
- uint LdIdx = 0;
-
-
switch (Response.Objs[Idx].Id)
{
case OBJ_ID_LOGINANSWER:
|