You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In HttpHelper, URLs are passed to libcurl as std::string, where they should be char pointers, thus breaking things like CPDLC, due to libcurl errors.
The std::string.c_str() method is exactly what's needed here.
In HttpHelper, URLs are passed to libcurl as
std::string
, where they should be char pointers, thus breaking things like CPDLC, due to libcurl errors.The
std::string.c_str()
method is exactly what's needed here.See:
vSMR/vSMR/HttpHelper.cpp
Line 32 in e696e09
If some more time can be given, I can prepare a patch to fix this.
The text was updated successfully, but these errors were encountered: