diff options
author | Karl Berry <karl@freefriends.org> | 2017-11-03 22:50:57 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-11-03 22:50:57 +0000 |
commit | d280e23580526277e20890e40d6551dd390851f4 (patch) | |
tree | abbed1ab83338c075cdc54ae076526266f590a20 /Build/source/texk/kpathsea/hash.c | |
parent | 753ccf29ee3c32686dbe1cb4ada792d0f26ec429 (diff) |
checks for empty program name, empty default strings
git-svn-id: svn://tug.org/texlive/trunk@45684 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/hash.c')
-rw-r--r-- | Build/source/texk/kpathsea/hash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/hash.c b/Build/source/texk/kpathsea/hash.c index 0b126ce8369..7fe12b7b403 100644 --- a/Build/source/texk/kpathsea/hash.c +++ b/Build/source/texk/kpathsea/hash.c @@ -1,6 +1,6 @@ /* hash.c: hash table operations. - Copyright 1994-2000, 2002, 2005, 2008, 2012, 2016 + Copyright 1994-2000, 2002, 2005, 2008, 2012, 2016, 2017 Karl Berry & Olaf Weber. This library is free software; you can redistribute it and/or @@ -46,7 +46,7 @@ hash (hash_table_type table, const_string key) return n; } -/* Identical has function as above, but does not normalize keys. */ +/* Identical hash function as above, but does not normalize keys. */ static unsigned hash_normalized (hash_table_type table, const_string key) { |