summaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2017-02-05 21:11:38 +0300
committerGeorge Hazan <ghazan@miranda.im>2017-02-05 21:11:38 +0300
commit48dd585af3311ef3e51bf081c37e61b56199a455 (patch)
treef0bd6bb475e3187f9544a8d5ebe8c1d823c9e23e /protocols
parentacc851ce83fd1fb2b1d5e0d5d1e35e41f49e1575 (diff)
fix for the incorrect UIN assignment
Diffstat (limited to 'protocols')
-rw-r--r--protocols/IcqOscarJ/src/fam_04message.cpp2
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;