| 30 | } |
| 31 | |
| 32 | void curl_share::initialize_curl_share() { |
| 33 | this->curl = curl_share_init(); |
| 34 | if (this->curl == nullptr) { |
| 35 | throw curl_share_exception("Null pointer intercepted",__FUNCTION__); |
| 36 | } |
| 37 | } |
nothing calls this directly
no test coverage detected