summaryrefslogtreecommitdiff
path: root/plugins/CmdLine/MimCmd
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2015-05-16 17:58:06 +0000
committerKirill Volinsky <mataes2007@gmail.com>2015-05-16 17:58:06 +0000
commitb6aaf5fb96db808ae73415c54588e987f66bc242 (patch)
tree44a1a1913b933653062c013a98c3fb94203a4cc7 /plugins/CmdLine/MimCmd
parent8afb55f81f38daef246b9cdb82b680ef8538881d (diff)
fix for strncat use
git-svn-id: http://svn.miranda-ng.org/main/trunk@13630 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/CmdLine/MimCmd')
-rw-r--r--plugins/CmdLine/MimCmd/src/commands.cpp8
-rw-r--r--plugins/CmdLine/MimCmd/src/common.h2
2 files changed, 6 insertions, 4 deletions
diff --git a/plugins/CmdLine/MimCmd/src/commands.cpp b/plugins/CmdLine/MimCmd/src/commands.cpp
index eba3893763..6dddcffc43 100644
--- a/plugins/CmdLine/MimCmd/src/commands.cpp
+++ b/plugins/CmdLine/MimCmd/src/commands.cpp
@@ -141,11 +141,11 @@ void HandleHelpCommand(PCommand helpCommand, char *argv[], int argc, PReply repl
for (int i = 0; i < cKnownCommands - 1; i++)
{
- strncat(reply->message, knownCommands[i].command, size);
- strncat(reply->message, ", ", size);
+ strncat(reply->message, knownCommands[i].command, SIZEOF(reply->message) - mir_strlen(reply->message));
+ strncat(reply->message, ", ", SIZEOF(reply->message) - mir_strlen(reply->message));
}
- strncat(reply->message, knownCommands[cKnownCommands - 1].command, size);
- strncat(reply->message, ".", size);
+ strncat(reply->message, knownCommands[cKnownCommands - 1].command, SIZEOF(reply->message) - mir_strlen(reply->message));
+ strncat(reply->message, ".", SIZEOF(reply->message) - mir_strlen(reply->message));
}
}
diff --git a/plugins/CmdLine/MimCmd/src/common.h b/plugins/CmdLine/MimCmd/src/common.h
index fddbf01649..2b6057ec9c 100644
--- a/plugins/CmdLine/MimCmd/src/common.h
+++ b/plugins/CmdLine/MimCmd/src/common.h
@@ -27,6 +27,8 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <newpluginapi.h>
#include <m_langpack.h>
+#include <m_system.h>
+#include <m_system_cpp.h>
#include "..\..\src\mimcmd_ipc.h"
#include "version.h"