diff options
author | Rob Landley <rob@landley.net> | 2005-12-15 06:51:52 +0000 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2005-12-15 06:51:52 +0000 |
commit | 164c5c80ba122a6ed71a29d41730c802750a5ae1 (patch) | |
tree | e69a53c0c1c166551b7f2693015cb4a5d4c49bfb | |
parent | 5aabf4e41561a9b501997c088adbafbd68cd2f3a (diff) | |
download | busybox-164c5c80ba122a6ed71a29d41730c802750a5ae1.tar.gz |
Eliminate unnecessary allocation from md5sum that was leaked without ever being used.
-rw-r--r-- | coreutils/md5_sha1_sum.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/coreutils/md5_sha1_sum.c b/coreutils/md5_sha1_sum.c index 064340f25..287c2f524 100644 --- a/coreutils/md5_sha1_sum.c +++ b/coreutils/md5_sha1_sum.c @@ -142,15 +142,6 @@ static int hash_files(int argc, char **argv, const uint8_t hash_algo) } else #endif { - uint8_t hash_length; - - if (hash_algo == HASH_MD5) { - hash_length = 16; - } else { - hash_length = 20; - } - hash_value = xmalloc(hash_length); - while (optind < argc) { char *file_ptr = argv[optind++]; |