From 3c3f1115f6e9a9b914e2dcbd796501ca7ce85342 Mon Sep 17 00:00:00 2001 From: Charles Date: Wed, 19 Feb 2020 02:51:44 +0100 Subject: Tested ht* --- src/ht/ft_htget.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/ht/ft_htget.c') diff --git a/src/ht/ft_htget.c b/src/ht/ft_htget.c index c5e7234..76e4fb2 100644 --- a/src/ht/ft_htget.c +++ b/src/ht/ft_htget.c @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/01/30 08:33:21 by cacharle #+# #+# */ -/* Updated: 2020/02/17 03:06:07 by cacharle ### ########.fr */ +/* Updated: 2020/02/19 01:44:41 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -17,10 +17,13 @@ void *ft_htget(t_ftht *ht, char *key) { t_ftht_digest digest; + t_ftlst *found; if (ht == NULL || key == NULL) return (NULL); digest = ft_hthash(ht, key); - return (((t_ftht_content*)ft_lstlfind(ht->entries[digest], - ft_inter_htkey_cmp, key)->content)->value); + found = ft_lstlfind(ht->entries[digest], ft_inter_htkey_cmp, key); + if (found == NULL) + return (NULL); + return (((t_ftht_content*)found->content)->value); } -- cgit