aboutsummaryrefslogtreecommitdiffstats
path: root/capinfos.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-12-17 12:09:40 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2009-12-17 12:09:40 +0000
commit3f07d686cac9080c7942a3a5c41c9390e53a0855 (patch)
treeab7a11bdd99c322c17c9b4834fdb5732ca451609 /capinfos.c
parente451ab37259e92dcf88e531c7b9b1eab3bc1c260 (diff)
Initialize hd pointer to avoid a compiler warning.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31290 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capinfos.c')
-rw-r--r--capinfos.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/capinfos.c b/capinfos.c
index 3cbdc5e330..d4fbfa1614 100644
--- a/capinfos.c
+++ b/capinfos.c
@@ -688,7 +688,7 @@ main(int argc, char *argv[])
#ifdef HAVE_LIBGCRYPT
FILE *fh;
char *hash_buf = NULL;
- gcry_md_hd_t hd;
+ gcry_md_hd_t hd = NULL;
size_t hash_bytes;
#endif