mirror of
https://github.com/moparisthebest/curl
synced 2025-01-02 17:38:00 -05:00
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;
|
||||
}
|
||||
|
||||
return mech != NULL ? CURLE_OK : CURLE_FAILED_INIT;
|
||||
return *mech != NULL ? CURLE_OK : CURLE_FAILED_INIT;
|
||||
}
|
||||
|
||||
CURLcode
|
||||
|
Loading…
Reference in New Issue
Block a user