choose_mech: fix return code
Coverity CID 1241950. The pointer is never NULL but it might point to NULL.
This commit is contained in:
parent
c2791caf53
commit
793ac8035c
@ -564,7 +564,7 @@ static CURLcode choose_mech(struct connectdata *conn)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
return mech != NULL ? CURLE_OK : CURLE_FAILED_INIT;
|
return *mech != NULL ? CURLE_OK : CURLE_FAILED_INIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
CURLcode
|
CURLcode
|
||||||
|
Loading…
x
Reference in New Issue
Block a user