diff options
author | George Hazan <ghazan@miranda.im> | 2017-02-05 22:03:00 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-02-05 22:03:00 +0300 |
commit | 9000595b551d09cbaf14cbfd7b49aa5aca3d9a90 (patch) | |
tree | ea5e3f6abb32c518f7f82b10fbcc9ca67e70e13a /protocols/IcqOscarJ/src/fam_04message.cpp | |
parent | 48dd585af3311ef3e51bf081c37e61b56199a455 (diff) |
proper fix for UINs in auth dialogs
Diffstat (limited to 'protocols/IcqOscarJ/src/fam_04message.cpp')
-rw-r--r-- | protocols/IcqOscarJ/src/fam_04message.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/IcqOscarJ/src/fam_04message.cpp b/protocols/IcqOscarJ/src/fam_04message.cpp index a86ee63662..25ed7614d9 100644 --- a/protocols/IcqOscarJ/src/fam_04message.cpp +++ b/protocols/IcqOscarJ/src/fam_04message.cpp @@ -1628,7 +1628,7 @@ void CIcqProto::handleMessageTypes(DWORD dwUin, char *szUID, DWORD dwTimestamp, }
{
DB_AUTH_BLOB blob(hContact, pszMsgField[0], pszMsgField[1], pszMsgField[2], pszMsgField[3], pszMsgField[5]);
- *(DWORD*)(PBYTE)blob = dwUin;
+ blob.set_uin(dwUin);
PROTORECVEVENT pre = { 0 };
pre.timestamp = dwTimestamp;
|