Comment 2 for bug 1163609

Revision history for this message
Barry Warsaw (barry) wrote :

Reproducible with this simple C program:

#include <stdio.h>
#include <curl/multi.h>

int main()
{
   CURLM *handle = curl_multi_init();

   printf("handle: 0x%x\n", (unsigned int)handle);
   curl_multi_cleanup(handle);
   return 0;
}

gcc -g -o curltest curltest.c `curl-config --static-libs`

So this looks like it could be a bug in curl itself.