clean up HttpGet

This commit is contained in:
Robin Gareus 2016-07-18 19:19:35 +02:00
parent b8f5306d5b
commit c9959f742a
2 changed files with 6 additions and 3 deletions

View File

@ -141,7 +141,8 @@ HttpGet::~HttpGet ()
char*
HttpGet::get (const char* url)
{
if (!_curl) {
_status = _result = -1;
if (!_curl || !url) {
return NULL;
}
@ -151,7 +152,9 @@ HttpGet::get (const char* url)
if (!persist) {
free (mem.data);
}
} // otherwise caller is expected to have free()d or re-used it.
mem.data = NULL;
mem.size = 0;
curl_easy_setopt (_curl, CURLOPT_URL, url);

View File

@ -39,7 +39,7 @@ class HttpGet {
std::string get (const std::string& url) {
char *rv = get (url.c_str ());
return rv ? std::string (rv) : std::string ();
return rv ? std::string (rv) : std::string ("");
}
char* data () const { return mem.data; }