aboutsummaryrefslogtreecommitdiffstats
path: root/src/db/upnp/Directory.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2014-01-18 13:36:50 +0100
committerMax Kellermann <max@duempel.org>2014-01-18 13:36:50 +0100
commit55737e4ff63df685f1603eadc3105cda38b7da9b (patch)
treeba54beb753aa9cd8c5d40e6f88f5f8e129a6dbac /src/db/upnp/Directory.cxx
parentf3b4ddee6c9ede15ed0009651d47d260fcd12fd3 (diff)
downloadmpd-55737e4ff63df685f1603eadc3105cda38b7da9b.tar.gz
mpd-55737e4ff63df685f1603eadc3105cda38b7da9b.tar.xz
mpd-55737e4ff63df685f1603eadc3105cda38b7da9b.zip
db/upnp/Util: trimstring() constructs string from buffer
Reduce overhead by omitting the part of the buffer that consists only of whitespace.
Diffstat (limited to '')
-rw-r--r--src/db/upnp/Directory.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/db/upnp/Directory.cxx b/src/db/upnp/Directory.cxx
index 3b6428389..757e2e19d 100644
--- a/src/db/upnp/Directory.cxx
+++ b/src/db/upnp/Directory.cxx
@@ -156,8 +156,7 @@ protected:
virtual void CharacterData(const XML_Char *s, int len)
{
- std::string str(s, len);
- trimstring(str);
+ std::string str = trimstring(s, len);
TagType type = tag_table_lookup(upnp_tags,
m_path.back().c_str());