Kaydet (Commit) 0b8e5898 authored tarafından Caolán McNamara's avatar Caolán McNamara

curl 7.50.0 has CURL as typedef struct Curl_easy

Change-Id: I22e5e2cdf78c38087579071c1b1570a8adc7d3c4
üst 8e3eb727
......@@ -71,7 +71,7 @@ FTPLoaderThread::~FTPLoaderThread() {
CURL* FTPLoaderThread::handle() {
CURL* ret = osl_getThreadKeyData(m_threadKey);
CURL* ret = static_cast<CURL*>(osl_getThreadKeyData(m_threadKey));
if(!ret) {
ret = curl_easy_init();
if (ret != nullptr) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment