diff options
author | George Hazan <ghazan@miranda.im> | 2017-02-06 23:31:56 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2017-02-06 23:31:56 +0300 |
commit | f7cfd1068128e6a7da7d69d1de035b6c70028e17 (patch) | |
tree | f6ddc1206a47661f1e4c95541c15bfdbbd5b5930 /protocols/IcqOscarJ/src/fam_04message.cpp | |
parent | 17d8c0bb68eef6817c1f03a2abd5752e01b93ce9 (diff) |
strange hand-made array removed
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 25ed7614d9..020c07db0a 100644 --- a/protocols/IcqOscarJ/src/fam_04message.cpp +++ b/protocols/IcqOscarJ/src/fam_04message.cpp @@ -1918,7 +1918,7 @@ void CIcqProto::handleRecvMsgResponse(BYTE *buf, size_t wLen) return;
}
- if (IsValidOscarTransfer(pCookieData)) {
+ if (IsValidOscarTransfer((basic_filetransfer*)pCookieData)) {
// it is OFT response
handleRecvServResponseOFT(buf, wLen, dwUin, szUid, pCookieData);
return;
|