summaryrefslogtreecommitdiff
path: root/src/md5sum.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-04-07 20:09:46 +0000
committerJim Meyering <jim@meyering.net>2005-04-07 20:09:46 +0000
commit3bad149c95f763ed7514b0f07d79fba47d8457d2 (patch)
tree3f8d04fb932b3e43347881d572930b57a180f334 /src/md5sum.c
parented3d178804ffc6b15cfeea9c8cb9c18354aa780a (diff)
downloadcoreutils-3bad149c95f763ed7514b0f07d79fba47d8457d2.tar.xz
(digest_check) [LINT]: Initialize hex_digest to NULL.
Diffstat (limited to 'src/md5sum.c')
-rw-r--r--src/md5sum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/md5sum.c b/src/md5sum.c
index bc017f5f5..d12048a4a 100644
--- a/src/md5sum.c
+++ b/src/md5sum.c
@@ -415,7 +415,7 @@ digest_check (const char *checkfile_name, int (*digest_stream) (FILE *, void *))
{
char *filename;
bool binary;
- unsigned char *hex_digest;
+ unsigned char *hex_digest IF_LINT (= NULL);
ssize_t line_length;
++line_number;