jpbarrette/curlpp

exception is working weird after upgrading curl from 7.29 to 7.72

atari83 opened this issue · 0 comments

Hello there,

I don't really know if it only happen on my devel machine, or someone else also experience this.
But the issue is, after upgrading the curl to 7.72, I lost the exception reason ( the text - .what() )
So, the exception is actually catch but there is no text !
I'm specifically talking about curlpp::LogicError and curlpp::RuntimeError exception classes.

The workaround that I had found at the moment was to use curlpp::LibcurlLogicError and curlpp::LibcurlRuntimeError to have access to curl response object and print the reason by myself:
curl_easy_strerror(e.whatCode())

Can you please test it from your end ?

Thanks,