BUG: Remove memory leak

This commit is contained in:
Andy Cedilnik 2005-03-07 11:03:12 -05:00
parent 8ee95c2c57
commit b629f608d4
1 changed files with 1 additions and 0 deletions

View File

@ -421,6 +421,7 @@ destroyCurlTransaction(curlTransaction * const curlTransactionP) {
curl_slist_free_all(curlTransactionP->headerList);
strfree(curlTransactionP->serverUrl);
curl_easy_cleanup(curlTransactionP->curlSessionP);
free(curlTransactionP);
}