From 55737e4ff63df685f1603eadc3105cda38b7da9b Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Sat, 18 Jan 2014 13:36:50 +0100 Subject: db/upnp/Util: trimstring() constructs string from buffer Reduce overhead by omitting the part of the buffer that consists only of whitespace. --- src/db/upnp/Device.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/db/upnp/Device.cxx') diff --git a/src/db/upnp/Device.cxx b/src/db/upnp/Device.cxx index 37d68c232..c947f5a14 100644 --- a/src/db/upnp/Device.cxx +++ b/src/db/upnp/Device.cxx @@ -56,8 +56,7 @@ protected: } virtual void CharacterData(const XML_Char *s, int len) { - std::string str(s, len); - trimstring(str); + std::string str = trimstring(s, len); switch (m_path.back()[0]) { case 'c': if (!m_path.back().compare("controlURL")) -- cgit v1.2.3