summaryrefslogtreecommitdiff
path: root/src/modules.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-09 17:51:22 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-05-09 17:51:22 +0000
commit40d674d14cff051207e2004211b9e4e7686bb524 (patch)
tree25f8eea23504946c4caa7b30b5a2530b119b880a /src/modules.cpp
parentd483a20dcb724d28777908c5da0505624729a840 (diff)
Fixes to way allocations are handled
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1346 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index 495181cf4..006802cf5 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -889,7 +889,7 @@ std::string ConfigReader::ReadValue(std::string tag, std::string name, int index
this->error = CONF_VALUE_NOT_FOUND;
return "";
}
- return std::string(val);
+ return val;
}
bool ConfigReader::ReadFlag(std::string tag, std::string name, int index)