Merge pull request #7962 from spycrab/httprequest_ec_memleak

Common/HttpRequest: Fix EscapeComponent leaking memory
This commit is contained in:
spycrab 2019-04-06 13:46:03 +02:00 committed by GitHub
commit b47f09c26d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -167,7 +167,11 @@ void HttpRequest::Impl::FollowRedirects(long max)
std::string HttpRequest::Impl::EscapeComponent(const std::string& string)
{
return curl_easy_escape(m_curl.get(), string.c_str(), static_cast<int>(string.size()));
char* escaped = curl_easy_escape(m_curl.get(), string.c_str(), static_cast<int>(string.size()));
std::string escaped_str(escaped);
curl_free(escaped);
return escaped_str;
}
static size_t CurlWriteCallback(char* data, size_t size, size_t nmemb, void* userdata)