Code style: space after 'if'
Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
@@ -2723,7 +2723,7 @@ static void multiblock_speed(const EVP_CIPHER *evp_cipher)
|
||||
|
||||
inp = OPENSSL_malloc(mblengths[num - 1]);
|
||||
out = OPENSSL_malloc(mblengths[num - 1] + 1024);
|
||||
if(!inp || !out) {
|
||||
if (!inp || !out) {
|
||||
BIO_printf(bio_err,"Out of memory\n");
|
||||
goto end;
|
||||
}
|
||||
@@ -2813,8 +2813,8 @@ static void multiblock_speed(const EVP_CIPHER *evp_cipher)
|
||||
}
|
||||
|
||||
end:
|
||||
if(inp)
|
||||
if (inp)
|
||||
OPENSSL_free(inp);
|
||||
if(out)
|
||||
if (out)
|
||||
OPENSSL_free(out);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user