summaryrefslogtreecommitdiff
path: root/src/client/Response.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2016-04-12 22:27:15 +0200
committerMax Kellermann <max@duempel.org>2016-04-12 22:59:23 +0200
commit6a1f5667f95f99c4f4457f370abb10172fa7751e (patch)
tree4a35bbd04a4db80773ee81fe9cf0bb6989bd6439 /src/client/Response.cxx
parentfab5f58ee058ad7de633c26bb3fb90762bdeb6a9 (diff)
util/FormatString: return AllocatedString
Diffstat (limited to 'src/client/Response.cxx')
-rw-r--r--src/client/Response.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/client/Response.cxx b/src/client/Response.cxx
index b741d7eb5..62aca5ebb 100644
--- a/src/client/Response.cxx
+++ b/src/client/Response.cxx
@@ -21,6 +21,7 @@
#include "Response.hxx"
#include "Client.hxx"
#include "util/FormatString.hxx"
+#include "util/AllocatedString.hxx"
bool
Response::Write(const void *data, size_t length)
@@ -37,10 +38,7 @@ Response::Write(const char *data)
bool
Response::FormatV(const char *fmt, va_list args)
{
- char *p = FormatNewV(fmt, args);
- bool success = Write(p);
- delete[] p;
- return success;
+ return Write(FormatStringV(fmt, args).c_str());
}
bool