diff options
author | Mattias Andrée <maandree@kth.se> | 2022-02-26 11:50:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-26 11:50:21 +0100 |
commit | 5293549d70d68a5337bdf40479d025933d1ea68b (patch) | |
tree | 1c4b47be3edd634c5673a844b8a110f4544cd9fb /digest.c | |
parent | Fix use of install_name_tool: rewrote incorrect, non-existing file (diff) | |
parent | Remove unused variables from libkeccak_zerocopy_digest (diff) | |
download | libkeccak-5293549d70d68a5337bdf40479d025933d1ea68b.tar.gz libkeccak-5293549d70d68a5337bdf40479d025933d1ea68b.tar.bz2 libkeccak-5293549d70d68a5337bdf40479d025933d1ea68b.tar.xz |
Merge pull request #18 from oyheskes/remove-unused-variables
Remove unused variables from libkeccak_zerocopy_digest
Diffstat (limited to 'digest.c')
-rw-r--r-- | digest.c | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -462,10 +462,8 @@ libkeccak_zerocopy_digest(struct libkeccak_state *restrict state, void *restrict size_t bits, const char *restrict suffix, void *restrict hashsum) { unsigned char *restrict msg = msg_; - auto unsigned char *restrict new; register long int rr = state->r >> 3; auto size_t suffix_len = suffix ? __builtin_strlen(suffix) : 0; - register size_t ext; register long int i; if (!msg) { |