mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 11:35:38 +01:00
Style corrections
This commit is contained in:
parent
2321945e44
commit
b3d3127d01
@ -26,10 +26,10 @@ int dummy_send( void *ctx, const unsigned char *buf, size_t len )
|
||||
(void) buf;
|
||||
|
||||
//pretends we wrote everything ok
|
||||
if (len > INT_MAX) {
|
||||
return (-1);
|
||||
if ( len > INT_MAX ) {
|
||||
return ( -1 );
|
||||
}
|
||||
return (int) ( len );
|
||||
return ( (int) len );
|
||||
}
|
||||
|
||||
int fuzz_recv( void *ctx, unsigned char *buf, size_t len )
|
||||
@ -39,18 +39,18 @@ int fuzz_recv( void *ctx, unsigned char *buf, size_t len )
|
||||
|
||||
if (biomemfuzz->Offset == biomemfuzz->Size) {
|
||||
//EOF
|
||||
return (0);
|
||||
return ( 0 );
|
||||
}
|
||||
if (len > INT_MAX) {
|
||||
return (-1);
|
||||
if ( len > INT_MAX ) {
|
||||
return ( -1 );
|
||||
}
|
||||
if (len + biomemfuzz->Offset > biomemfuzz->Size) {
|
||||
if ( len + biomemfuzz->Offset > biomemfuzz->Size ) {
|
||||
//do not overflow
|
||||
len = biomemfuzz->Size - biomemfuzz->Offset;
|
||||
}
|
||||
memcpy(buf, biomemfuzz->Data + biomemfuzz->Offset, len);
|
||||
biomemfuzz->Offset += len;
|
||||
return (int) ( len );
|
||||
return ( (int) len );
|
||||
}
|
||||
|
||||
int dummy_random( void *p_rng, unsigned char *output, size_t output_len )
|
||||
|
Loading…
Reference in New Issue
Block a user