mirror of
https://github.com/libtom/libtomcrypt
synced 2026-08-25 20:26:07 -04:00
Remove unnecessary casts in the misc implementations
This commit is contained in:
parent
b98ef26112
commit
4b3c98a4e6
1 changed files with 1 additions and 1 deletions
|
|
@ -142,7 +142,7 @@ int ssh_decode_sequence_multi(const unsigned char *in, unsigned long *inlen, ...
|
|||
err = CRYPT_INVALID_PACKET;
|
||||
goto error;
|
||||
} else {
|
||||
if ((err = mp_read_unsigned_bin(vdata, (unsigned char *)in, size)) != CRYPT_OK) { goto error; }
|
||||
if ((err = mp_read_unsigned_bin(vdata, in, size)) != CRYPT_OK) { goto error; }
|
||||
}
|
||||
in += size;
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue