From 8c11ba885149711880cf07dbf6ca0209ec5ebc49 Mon Sep 17 00:00:00 2001 From: samr7 Date: Wed, 17 Aug 2011 12:31:13 -0700 Subject: [PATCH] Resolve a GCC warning. --- util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/util.c b/util.c index 44cef2a..5103541 100644 --- a/util.c +++ b/util.c @@ -507,6 +507,7 @@ vg_protect_crypt(int parameter_group, salt_len = 8; ciphertext_len = ((plaintext_len + cipher->block_size) / cipher->block_size) * cipher->block_size; + hmac_digest = NULL; } if (!enc && (data_in_len != (1 + ciphertext_len + hmac_len + salt_len)))