commit | 10902c56405f73614ab4f4cbf4961639fa9206aa | [log] [tgz] |
---|---|---|
author | Matthias Schulz <140500342+mschulz-at-hilscher@users.noreply.github.com> | Fri Feb 09 11:14:50 2024 +0100 |
committer | GitHub <noreply@github.com> | Fri Feb 09 11:14:50 2024 +0100 |
tree | 35aee993976a45ae173e39fe5e404affeaf2ce1b | |
parent | cdf9894e604c40071bee2bcc6177cc31e148f214 [diff] |
Use NULL for pointer initialization Co-authored-by: Dave Rodgman <dave.rodgman@arm.com> Signed-off-by: Matthias Schulz <140500342+mschulz-at-hilscher@users.noreply.github.com>
diff --git a/library/gcm.c b/library/gcm.c index fc03acd..d7acace 100644 --- a/library/gcm.c +++ b/library/gcm.c
@@ -304,7 +304,7 @@ int i = 0; unsigned char lo, hi, rem; uint64_t u64z[2]; - const uint64_t *pu64z = 0; + const uint64_t *pu64z = NULL; uint8_t *u8z = (uint8_t *) u64z; lo = x[15] & 0xf;