There was an error while loading. Please reload this page.
2 parents 1cf3565 + 9d3f6b4 commit 72726dfCopy full SHA for 72726df
include/curl_header.h
@@ -89,7 +89,7 @@ namespace curl {
89
}
90
91
// Implementation of copy constructor.
92
- inline curl_header::curl_header(const curl_header &header) : headers(nullptr), size(0) {
+ inline curl_header::curl_header(const curl_header &header) : size(0), headers(nullptr) {
93
*this = header;
94
95
include/curl_multi.h
@@ -327,9 +327,9 @@ namespace curl {
327
328
using multi_ptr = std::unique_ptr<CURLM, multi_deleter>;
329
330
- int message_queued;
331
- int active_transfers;
332
multi_ptr curl;
+ int active_transfers;
+ int message_queued;
333
std::unordered_map<CURL*, curl_easy*> handles;
334
};
335
0 commit comments