From de25d946733f774e3a5b53a58438a9c92af0acbe Mon Sep 17 00:00:00 2001 From: danieldg Date: Sat, 3 Oct 2009 01:52:59 +0000 Subject: Get rid of a bunch of memory-wasting C-style strings git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11796 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/commands/cmd_part.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/commands/cmd_part.cpp') diff --git a/src/commands/cmd_part.cpp b/src/commands/cmd_part.cpp index e2e4e59a0..a7a407ac8 100644 --- a/src/commands/cmd_part.cpp +++ b/src/commands/cmd_part.cpp @@ -39,12 +39,12 @@ CmdResult CommandPart::Handle (const std::vector& parameters, User if (IS_LOCAL(user)) { - if (*ServerInstance->Config->FixedPart) + if (!ServerInstance->Config->FixedPart.empty()) reason = ServerInstance->Config->FixedPart; else { if (parameters.size() > 1) - reason = ServerInstance->Config->PrefixPart + std::string(parameters[1]) + ServerInstance->Config->SuffixPart; + reason = ServerInstance->Config->PrefixPart + parameters[1] + ServerInstance->Config->SuffixPart; else reason = ""; } -- cgit v1.2.3