From f75d9e0dd4f19819af066ef20e446b4464302f88 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Thu, 28 Apr 2016 12:46:40 -0700 Subject: [PATCH] Avoid needlessly constructing a temporary string --- mbtiles.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mbtiles.cpp b/mbtiles.cpp index 4b68545..ca45de1 100644 --- a/mbtiles.cpp +++ b/mbtiles.cpp @@ -102,7 +102,7 @@ static void quote(std::string *buf, const char *s) { } *out = '\0'; - buf->append(std::string(tmp)); + buf->append(tmp, strlen(tmp)); } static void aprintf(std::string *buf, const char *format, ...) { @@ -116,7 +116,7 @@ static void aprintf(std::string *buf, const char *format, ...) { } va_end(ap); - buf->append(std::string(tmp)); + buf->append(tmp, strlen(tmp)); free(tmp); }