oaes_lib: fix a leak on OOM error path

found by coverity
This commit is contained in:
moneromooo-monero 2016-12-10 12:38:56 +00:00
parent 2d0fbaf35b
commit f6fcf0ef26
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 3 additions and 0 deletions

View File

@ -639,7 +639,10 @@ static OAES_RET oaes_key_gen( OAES_CTX * ctx, size_t key_size )
_key->data = (uint8_t *) calloc( key_size, sizeof( uint8_t ));
if( NULL == _key->data )
{
free( _key );
return OAES_RET_MEM;
}
for( _i = 0; _i < key_size; _i++ )
#ifdef OAES_HAVE_ISAAC