From 88ece69bbe1d68aaa30b4661965729025ac183da Mon Sep 17 00:00:00 2001 From: JDierkse Date: Fri, 1 May 2020 10:55:18 +0200 Subject: [PATCH] Fix SIGSEGV on Alpine --- Http/HttpClientImpl.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Http/HttpClientImpl.cpp b/Http/HttpClientImpl.cpp index 18c5d94..0bc4112 100644 --- a/Http/HttpClientImpl.cpp +++ b/Http/HttpClientImpl.cpp @@ -213,7 +213,7 @@ std::string HttpClientImpl::GetUrlPostAttachmentContents(const std::string& url, curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &WriteCallback); curl_easy_setopt(curl, CURLOPT_WRITEDATA, &buffer); - int code = 0; + long code = 0; curl_easy_perform(curl); curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); curl_easy_cleanup(curl); @@ -290,7 +290,7 @@ void HttpClientImpl::GetUrlPostAttachmentSilent(const std::string& url, const st curl_easy_setopt(curl, CURLOPT_TIMEOUT, m_timeout); curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost); - int code = 0; + long code = 0; curl_easy_perform(curl); curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); curl_easy_cleanup(curl); @@ -364,7 +364,7 @@ std::string HttpClientImpl::GetUrlPostAttachmentRedirect(const std::string& url, curl_easy_setopt(curl, CURLOPT_TIMEOUT, m_timeout); curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost); - int code = 0; + long code = 0; curl_easy_perform(curl); curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); @@ -458,7 +458,7 @@ std::string HttpClientImpl::GetUrlPostAttachmentContents(const std::string& url, curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, &WriteCallback); curl_easy_setopt(curl, CURLOPT_WRITEDATA, &buffer); - int code = 0; + long code = 0; curl_easy_perform(curl); curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); curl_easy_cleanup(curl); @@ -537,7 +537,7 @@ void HttpClientImpl::GetUrlPostAttachmentSilent(const std::string& url, const st curl_easy_setopt(curl, CURLOPT_COOKIEFILE, cookieFile.c_str()); curl_easy_setopt(curl, CURLOPT_COOKIEJAR, cookieFile.c_str()); - int code = 0; + long code = 0; curl_easy_perform(curl); curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); curl_easy_cleanup(curl); @@ -613,7 +613,7 @@ std::string HttpClientImpl::GetUrlPostAttachmentRedirect(const std::string& url, curl_easy_setopt(curl, CURLOPT_COOKIEFILE, cookieFile.c_str()); curl_easy_setopt(curl, CURLOPT_COOKIEJAR, cookieFile.c_str()); - int code = 0; + long code = 0; curl_easy_perform(curl); curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code); @@ -699,7 +699,7 @@ std::string HttpClientImpl::PerformOperation(HttpClientImpl::Operation::type typ curl_easy_setopt(curl, CURLOPT_COOKIEJAR, cookieFile.c_str()); } - int code = 0; + long code = 0; curl_easy_perform(curl); curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &code);