Hi,
Experimenting with curlpp; does this look correct? I feel like I'm missing something, the memory seems to climb endlessly:
curlpp::initialize( CURL_GLOBAL_ALL);
curlpp::Easy client;
std::stringstream html;
client.setOpt(cURLpp::Options::WriteStream(&html));
int iRuns = 0;
while(g_bRunning)
{
// clear buffer
html.clear();
// download
client.perform();
std::cout << "finished run " << iRuns++ << "." << std::endl;
}
curlpp::terminate();
Analysis with instruments shows the memory allocated from curl_llist_alloc...

any direction appreciated.