mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 23:58:49 -05:00
Pointer "conn" dereferenced before NULL check. found by coverity.com scan
This commit is contained in:
parent
74e54c5a49
commit
75db459f0a
@ -2498,11 +2498,13 @@ Curl_setup_transfer(
|
||||
)
|
||||
{
|
||||
struct connectdata *conn = (struct connectdata *)c_conn;
|
||||
struct SessionHandle *data = conn->data;
|
||||
struct SessionHandle *data;
|
||||
|
||||
if(!conn)
|
||||
return CURLE_BAD_FUNCTION_ARGUMENT;
|
||||
|
||||
data = conn->data;
|
||||
|
||||
DEBUGASSERT((sockindex <= 1) && (sockindex >= -1));
|
||||
|
||||
/* now copy all input parameters */
|
||||
|
Loading…
Reference in New Issue
Block a user