diff options
author | Piotr Piastucki <leech.miranda@gmail.com> | 2015-05-15 14:09:33 +0000 |
---|---|---|
committer | Piotr Piastucki <leech.miranda@gmail.com> | 2015-05-15 14:09:33 +0000 |
commit | 3a4e64f3b6109ceac961dc8d2c6aa93f18f87514 (patch) | |
tree | 1bc759d2b1e666aacb208be22a2eaddbfba07e32 /protocols/MSN/src/msn_threads.cpp | |
parent | c2fa1d69a0ee5e9a558b080fe04f54641a1ecce5 (diff) |
Fixed bug on static buffer copy introduced in 13604
Removed unnecessary use of strlen
git-svn-id: http://svn.miranda-ng.org/main/trunk@13606 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/MSN/src/msn_threads.cpp')
-rw-r--r-- | protocols/MSN/src/msn_threads.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/MSN/src/msn_threads.cpp b/protocols/MSN/src/msn_threads.cpp index 6a531525a1..382c113891 100644 --- a/protocols/MSN/src/msn_threads.cpp +++ b/protocols/MSN/src/msn_threads.cpp @@ -207,7 +207,7 @@ void __cdecl CMsnProto::MSNServerThread(void* arg) break; //wait for full line end
char msg[1024];
- strncpy_s(msg, info->mData, _TRUNCATE);
+ strncpy_s(msg, info->mData, msgLen);
if (*++peol != '\n')
debugLogA("Dodgy line ending to command: ignoring");
|