From: Daniel Stenberg Date: Fri, 15 Feb 2008 21:38:54 +0000 (+0000) Subject: mention that we explicitly ignore the return code X-Git-Tag: upstream/7.37.1~8072 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=48918c304741aaaf8924c377d31cc8b41562fc75;p=platform%2Fupstream%2Fcurl.git mention that we explicitly ignore the return code --- diff --git a/lib/url.c b/lib/url.c index 234c581..cecb8b6 100644 --- a/lib/url.c +++ b/lib/url.c @@ -3682,7 +3682,8 @@ static CURLcode CreateConnection(struct SessionHandle *data, result = setup_range(data); if(result) { DEBUGASSERT(conn->handler->done); - conn->handler->done(conn, result, FALSE); + /* we ignore the return code for the protocol-specific DONE */ + (void)conn->handler->done(conn, result, FALSE); return result; }