From 9e661601feba03d1158ac466a457d5a6ce7f3f11 Mon Sep 17 00:00:00 2001 From: Markus Elfring Date: Wed, 11 Mar 2015 18:15:33 +0100 Subject: Bug #149: Deletion of unnecessary checks before a few calls of cURL functions The following functions return immediately if a null pointer was passed. * Curl_cookie_cleanup * curl_formfree It is therefore not needed that a function caller repeats a corresponding check. This issue was fixed by using the software Coccinelle 1.0.0-rc24. Signed-off-by: Markus Elfring --- lib/share.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/share.c') diff --git a/lib/share.c b/lib/share.c index b8b6bee80..3fc53119e 100644 --- a/lib/share.c +++ b/lib/share.c @@ -198,8 +198,7 @@ curl_share_cleanup(CURLSH *sh) } #if !defined(CURL_DISABLE_HTTP) && !defined(CURL_DISABLE_COOKIES) - if(share->cookies) - Curl_cookie_cleanup(share->cookies); + Curl_cookie_cleanup(share->cookies); #endif #ifdef USE_SSL -- cgit v1.2.3