Fix incorrect variable used in Android-specific code

The function `curl_easy_setopt` expects a `CURL *`, but `pHandle` is a `void *`.
This commit is contained in:
Robert Müller 2024-02-20 21:11:26 +01:00
parent 99c982e3e0
commit aa7a614c36

View file

@ -174,7 +174,7 @@ bool CHttpRequest::ConfigureHandle(void *pHandle)
}
#ifdef CONF_PLATFORM_ANDROID
curl_easy_setopt(pHandle, CURLOPT_CAINFO, "data/cacert.pem");
curl_easy_setopt(pH, CURLOPT_CAINFO, "data/cacert.pem");
#endif
switch(m_Type)