made urlfree static, added (void) in front of one of the SSL calls. I did
these changes when trying to run lclint on the curl code.
This commit is contained in:
Родитель
1cf13c825f
Коммит
a79b541bd2
|
@ -142,12 +142,12 @@ void curl_free(void)
|
|||
{
|
||||
}
|
||||
|
||||
void urlfree(struct UrlData *data, bool totally)
|
||||
void static urlfree(struct UrlData *data, bool totally)
|
||||
{
|
||||
#ifdef USE_SSLEAY
|
||||
if (data->use_ssl) {
|
||||
if(data->ssl) {
|
||||
SSL_shutdown(data->ssl);
|
||||
(void)SSL_shutdown(data->ssl);
|
||||
SSL_set_connect_state(data->ssl);
|
||||
|
||||
SSL_free (data->ssl);
|
||||
|
|
Загрузка…
Ссылка в новой задаче