1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04: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:
Daniel Stenberg 2014-10-04 15:37:42 +02:00
parent c2791caf53
commit 793ac8035c

View File

@ -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