| 148 | void curl_form::add(const curl_pair<CURLformoption,string> &form_name, const vector<string> &files) { |
| 149 | const size_t size = files.size(); |
| 150 | struct curl_forms *new_files; |
| 151 | this->is_null(new_files = new struct curl_forms[size]); |
| 152 | |
| 153 | for (size_t i = 0; i < size; ++i) { |
nothing calls this directly
no outgoing calls
no test coverage detected