aboutsummaryrefslogtreecommitdiffstats
path: root/src/commands/cmd_qline.cpp
diff options
context:
space:
mode:
authorGravatar attilamolnar2012-09-30 01:10:57 +0200
committerGravatar attilamolnar2012-09-30 03:04:07 +0200
commit02859be56d43bcece02aab350e02bc95ed1bf446 (patch)
treebbb68a91e26f4502c22047ad2b26ed8918c5fbb1 /src/commands/cmd_qline.cpp
parentFixed issue #303 - fixed Windows build (diff)
downloadinspircd++-02859be56d43bcece02aab350e02bc95ed1bf446.tar.gz
inspircd++-02859be56d43bcece02aab350e02bc95ed1bf446.tar.bz2
inspircd++-02859be56d43bcece02aab350e02bc95ed1bf446.zip
Fix more undefined behavior caused by referencing the returned buffer by std::string::c_str() when the object is temporary
See 83c7cc45daf6fb1f8c36f15297a4657e45a34e88
Diffstat (limited to 'src/commands/cmd_qline.cpp')
-rw-r--r--src/commands/cmd_qline.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/commands/cmd_qline.cpp b/src/commands/cmd_qline.cpp
index 64ba1a78b..3118798e6 100644
--- a/src/commands/cmd_qline.cpp
+++ b/src/commands/cmd_qline.cpp
@@ -63,8 +63,9 @@ CmdResult CommandQline::Handle (const std::vector<std::string>& parameters, User
else
{
time_t c_requires_crap = duration + ServerInstance->Time();
+ std::string timestr = ServerInstance->TimeString(c_requires_crap);
ServerInstance->SNO->WriteToSnoMask('x',"%s added timed Q-line for %s, expires on %s: %s",user->nick.c_str(),parameters[0].c_str(),
- ServerInstance->TimeString(c_requires_crap).c_str(), parameters[2].c_str());
+ timestr.c_str(), parameters[2].c_str());
}
ServerInstance->XLines->ApplyLines();
}