Skip to content

Commit

Permalink
Fix code-style
Browse files Browse the repository at this point in the history
Signed-off-by: Przemek Stekiel <[email protected]>
  • Loading branch information
mprse committed Apr 25, 2023
1 parent d4d049b commit 44f2694
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion programs/fuzz/fuzz_pubkey.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
exit:
mbedtls_psa_crypto_free();
#endif /* MBEDTLS_USE_PSA_CRYPTO */
mbedtls_pk_free(&pk);
mbedtls_pk_free(&pk);
#else
(void) Data;
(void) Size;
Expand Down
2 changes: 1 addition & 1 deletion programs/fuzz/fuzz_x509csr.c
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size)
exit:
mbedtls_psa_crypto_free();
#endif /* MBEDTLS_USE_PSA_CRYPTO */
mbedtls_x509_csr_free(&csr);
mbedtls_x509_csr_free(&csr);
#else
(void) Data;
(void) Size;
Expand Down

0 comments on commit 44f2694

Please sign in to comment.