commit | 7ee55624fb3f4ac2057f66f00bd6a3cf9d50dccb | [log] [tgz] |
---|---|---|
author | Alfred Klomp <git@alfredklomp.com> | Mon Jul 14 22:16:39 2014 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Thu Aug 14 11:34:35 2014 +0200 |
tree | a662ec26de4b80b34db6d55ca52c794d067d416a | |
parent | 7c03424d1c102acd56edf55f69521dc2e6b20854 [diff] |
gcm.c: remove dead store Found with Clang's `scan-build` tool. The value written to `hi` is never used, resulting in a warning. Remove the dead store to get rid of the warning.
diff --git a/library/gcm.c b/library/gcm.c index 2456c40..d48f318 100644 --- a/library/gcm.c +++ b/library/gcm.c
@@ -220,7 +220,6 @@ #endif /* POLARSSL_AESNI_C && POLARSSL_HAVE_X86_64 */ lo = x[15] & 0xf; - hi = x[15] >> 4; zh = ctx->HH[lo]; zl = ctx->HL[lo];