Fix the use of unitialized memory with MBEDTLS_TEST_NULL_ENTROPY
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
8133abd746
commit
8e1e46ebb5
1 changed files with 2 additions and 2 deletions
|
@ -205,13 +205,13 @@ int mbedtls_null_entropy_poll( void *data,
|
||||||
{
|
{
|
||||||
((void) data);
|
((void) data);
|
||||||
((void) output);
|
((void) output);
|
||||||
*olen = 0;
|
|
||||||
|
|
||||||
|
*olen = 0;
|
||||||
if( len < sizeof(unsigned char) )
|
if( len < sizeof(unsigned char) )
|
||||||
return( 0 );
|
return( 0 );
|
||||||
|
|
||||||
|
output[0] = 0;
|
||||||
*olen = sizeof(unsigned char);
|
*olen = sizeof(unsigned char);
|
||||||
|
|
||||||
return( 0 );
|
return( 0 );
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue