Leonardo BOK

Results 1 issues of Leonardo BOK

Hollo there! I found memory leaks. ``` inline std::string Session::easyEscape(const std::string& text) { char *encoded_output = curl_easy_escape(curl_, text.c_str(), static_cast(text.length())); return std::string{encoded_output}; } ``` This code needs to free memory. For...