mirror of https://github.com/openssl/openssl.git
Fix goto label indents to match style
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Paul Dale <ppzgs1@gmail.com> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/27175)
This commit is contained in:
parent
08c8dd6b8c
commit
60f2a71400
|
@ -1618,7 +1618,7 @@ ML_KEM_KEY *ossl_ml_kem_key_dup(const ML_KEM_KEY *key, int selection)
|
|||
* duplicated.
|
||||
*/
|
||||
if (ossl_ml_kem_decoded_key(key))
|
||||
return 0;
|
||||
return NULL;
|
||||
|
||||
if (key == NULL
|
||||
|| (ret = OPENSSL_memdup(key, sizeof(*key))) == NULL)
|
||||
|
|
|
@ -310,7 +310,7 @@ static int mlx_kem_export(void *vkey, int selection, OSSL_CALLBACK *param_cb,
|
|||
ret = param_cb(params, cbarg);
|
||||
OSSL_PARAM_free(params);
|
||||
|
||||
err:
|
||||
err:
|
||||
OSSL_PARAM_BLD_free(tmpl);
|
||||
OPENSSL_secure_clear_free(sub_arg.prvenc, prvlen);
|
||||
OPENSSL_free(sub_arg.pubenc);
|
||||
|
|
Loading…
Reference in New Issue