Skip to content
Snippets Groups Projects
Commit 48918c30 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

mention that we explicitly ignore the return code

parent dc42d6fb
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment