diff options
author | George Hazan <ghazan@miranda.im> | 2017-02-05 21:11:38 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-02-05 21:11:38 +0300 |
commit | 48dd585af3311ef3e51bf081c37e61b56199a455 (patch) | |
tree | f0bd6bb475e3187f9544a8d5ebe8c1d823c9e23e /protocols | |
parent | acc851ce83fd1fb2b1d5e0d5d1e35e41f49e1575 (diff) |
fix for the incorrect UIN assignment
Diffstat (limited to 'protocols')
-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 ff2438da29..a86ee63662 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]);
- *(PBYTE)blob = dwUin;
+ *(DWORD*)(PBYTE)blob = dwUin;
PROTORECVEVENT pre = { 0 };
pre.timestamp = dwTimestamp;
|