mirror of
https://github.com/curl/curl.git
synced 2026-08-25 12:03:39 +03:00
checksrc: warn for assignments within if() expressions
... they're already frowned upon in our source code style guide, this now enforces the rule harder.
This commit is contained in:
parent
b228d2952b
commit
1c3e8bbfed
86 changed files with 413 additions and 226 deletions
|
|
@ -242,7 +242,8 @@ static gnutls_datum_t load_file(const char *file)
|
|||
long filelen;
|
||||
void *ptr;
|
||||
|
||||
if(!(f = fopen(file, "rb")))
|
||||
f = fopen(file, "rb");
|
||||
if(!f)
|
||||
return loaded_file;
|
||||
if(fseek(f, 0, SEEK_END) != 0
|
||||
|| (filelen = ftell(f)) < 0
|
||||
|
|
|
|||
|
|
@ -254,7 +254,8 @@ static SECStatus set_ciphers(struct Curl_easy *data, PRFileDesc * model,
|
|||
while((*cipher) && (ISSPACE(*cipher)))
|
||||
++cipher;
|
||||
|
||||
if((cipher_list = strchr(cipher, ','))) {
|
||||
cipher_list = strchr(cipher, ',');
|
||||
if(cipher_list) {
|
||||
*cipher_list++ = '\0';
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -2336,7 +2336,8 @@ static int asn1_object_dump(ASN1_OBJECT *a, char *buf, size_t len)
|
|||
{
|
||||
int i, ilen;
|
||||
|
||||
if((ilen = (int)len) < 0)
|
||||
ilen = (int)len;
|
||||
if(ilen < 0)
|
||||
return 1; /* buffer too big */
|
||||
|
||||
i = i2t_ASN1_OBJECT(buf, ilen, a);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue