Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
ashman-p committed Nov 17, 2023
1 parent b41b03b commit 849ab85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/common/sha2/sha2_c.c
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ void oqs_sha2_sha256_inc_finalize_c(uint8_t *out, sha256ctx *state, const uint8_
out[i] = state->ctx[i];
}
oqs_sha2_sha256_inc_ctx_release_c(state);
free(tmp_in); // IGNORE free-check
free(tmp_in); // IGNORE free-check
}

void oqs_sha2_sha224_inc_finalize_c(uint8_t *out, sha224ctx *state, const uint8_t *in, size_t inlen) {
Expand Down

0 comments on commit 849ab85

Please sign in to comment.