From 303e6b483aff4126701ca375dd085e9ae1d18b43 Mon Sep 17 00:00:00 2001 From: Rozhuk Ivan Date: Sat, 13 Dec 2014 08:01:55 +0000 Subject: multiple buf size fixes git-svn-id: http://svn.miranda-ng.org/main/trunk@11361 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- src/modules/chat/chat_opts.cpp | 6 ++---- src/modules/clist/clisttray.cpp | 4 ++-- 2 files changed, 4 insertions(+), 6 deletions(-) (limited to 'src/modules') diff --git a/src/modules/chat/chat_opts.cpp b/src/modules/chat/chat_opts.cpp index 720f643acf..872bf4a033 100644 --- a/src/modules/chat/chat_opts.cpp +++ b/src/modules/chat/chat_opts.cpp @@ -141,12 +141,10 @@ void RegisterFonts(void) for (int i = 0; i < SIZEOF(fontOptionsList); i++, index++) { FontOptionsList &FO = fontOptionsList[i]; - strncpy(fontid.dbSettingsGroup, CHATFONT_MODULE, sizeof(fontid.dbSettingsGroup)); + strncpy_s(fontid.dbSettingsGroup, CHATFONT_MODULE, _TRUNCATE); _tcsncpy_s(fontid.name, FO.szDescr, _TRUNCATE); - char idstr[10]; - mir_snprintf(idstr, SIZEOF(idstr), "Font%d", index); - strncpy(fontid.prefix, idstr, sizeof(fontid.prefix)); + mir_snprintf(fontid.prefix, SIZEOF(fontid.prefix), "Font%d", index); fontid.order = index; switch (i) { diff --git a/src/modules/clist/clisttray.cpp b/src/modules/clist/clisttray.cpp index 8cb1a16d47..3907f8f922 100644 --- a/src/modules/clist/clisttray.cpp +++ b/src/modules/clist/clisttray.cpp @@ -829,8 +829,8 @@ int fnCListTrayNotify(MIRANDASYSTRAYNOTIFY* msn) nid.hWnd = cli.hwndContactList; nid.uID = iconId; nid.uFlags = NIF_INFO; - mir_strncpy(nid.szInfo, msn->szInfo, sizeof(nid.szInfo)); - mir_strncpy(nid.szInfoTitle, msn->szInfoTitle, sizeof(nid.szInfoTitle)); + strncpy_s(nid.szInfo, msn->szInfo, _TRUNCATE); + strncpy_s(nid.szInfoTitle, msn->szInfoTitle, _TRUNCATE); nid.uTimeout = msn->uTimeout; nid.dwInfoFlags = msn->dwInfoFlags; return Shell_NotifyIconA(NIM_MODIFY, &nid) == 0; -- cgit v1.2.3