Andy Shellam wrote: > I'm using libcurl as part of a C++ application ...
> Here's a GDB output at the point my write function is called: > Breakpoint 1, aspire_platform::GoogleCheckoutClient::OnDataRead ( > this=0x80ee011, ptr=0x1, size=307, nmemb=11936960, stream=0x0) > at /opt/nmail32/aspire_backend/google_lib/src/GoogleCheckoutClient.cpp:236 The callback procedure should meet C requirements, and you are using a class method. You probably have to declare it as "static" (it must not have an implicit "this" argument). ------------------------------------------------------------------- List admin: http://cool.haxx.se/list/listinfo/curl-library Etiquette: http://curl.haxx.se/mail/etiquette.html
