Skip to content
Snippets Groups Projects
Commit 86d07360 authored by Tofu Linden's avatar Tofu Linden
Browse files

CID-316

Checker: UNINIT_CTOR
Function: LLHTTPAssetRequest::LLHTTPAssetRequest(LLHTTPAssetStorage *, const LLUUID &, LLAssetType::EType, LLAssetStorage::ERequestType, const std::basic_string<char, std::char_traits<char>, std::allocator<char>>&, void *)
File: /indra/llmessage/llhttpassetstorage.cpp
parent ee82ed69
No related branches found
No related tags found
No related merge requests found
...@@ -126,8 +126,9 @@ LLHTTPAssetRequest::LLHTTPAssetRequest(LLHTTPAssetStorage *asp, ...@@ -126,8 +126,9 @@ LLHTTPAssetRequest::LLHTTPAssetRequest(LLHTTPAssetStorage *asp,
const std::string& url, const std::string& url,
CURLM *curl_multi) CURLM *curl_multi)
: LLAssetRequest(uuid, type), : LLAssetRequest(uuid, type),
mZInitialized(false) mZInitialized(false)
{ {
memset(&mZStream, 0, sizeof(mZStream)); // we'll initialize this later, but for now zero the whole C-style struct to avoid debug/coverity noise
mAssetStoragep = asp; mAssetStoragep = asp;
mCurlHandle = NULL; mCurlHandle = NULL;
mCurlMultiHandle = curl_multi; mCurlMultiHandle = curl_multi;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment