From 02859be56d43bcece02aab350e02bc95ed1bf446 Mon Sep 17 00:00:00 2001 From: attilamolnar Date: Sun, 30 Sep 2012 01:10:57 +0200 Subject: Fix more undefined behavior caused by referencing the returned buffer by std::string::c_str() when the object is temporary See 83c7cc45daf6fb1f8c36f15297a4657e45a34e88 --- src/commands/cmd_version.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/commands/cmd_version.cpp') diff --git a/src/commands/cmd_version.cpp b/src/commands/cmd_version.cpp index 6fae329bd..7620197fd 100644 --- a/src/commands/cmd_version.cpp +++ b/src/commands/cmd_version.cpp @@ -42,7 +42,8 @@ class CommandVersion : public Command CmdResult CommandVersion::Handle (const std::vector&, User *user) { - user->WriteNumeric(RPL_VERSION, "%s :%s",user->nick.c_str(),ServerInstance->GetVersionString(IS_OPER(user)).c_str()); + std::string version = ServerInstance->GetVersionString(IS_OPER(user)); + user->WriteNumeric(RPL_VERSION, "%s :%s", user->nick.c_str(), version.c_str()); ServerInstance->Config->Send005(user); return CMD_SUCCESS; } -- cgit v1.3.1-10-gc9f91