From 6cb01d2fd8a6b07ef3ddaa8bb322f30c545316e7 Mon Sep 17 00:00:00 2001 From: Charles Date: Thu, 17 Oct 2019 09:09:41 +0200 Subject: More protection - substr if start > str length - all list functions check for NULL reference - not modifying const pointers --- ft_lstclear_bonus.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ft_lstclear_bonus.c') diff --git a/ft_lstclear_bonus.c b/ft_lstclear_bonus.c index b5829c7..ca80fb2 100644 --- a/ft_lstclear_bonus.c +++ b/ft_lstclear_bonus.c @@ -6,7 +6,7 @@ /* By: cacharle +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/09 09:02:39 by cacharle #+# #+# */ -/* Updated: 2019/10/15 14:32:23 by cacharle ### ########.fr */ +/* Updated: 2019/10/17 09:03:58 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -15,9 +15,9 @@ void ft_lstclear(t_list **lst, void (*del)(void *)) { - if (*lst == NULL) + if (*lst == NULL || lst == NULL || del == NULL) return ; - ft_lstclear(&(*lst)->next, del); + ft_lstclear(&((*lst)->next), del); ft_lstdelone(*lst, del); *lst = NULL; } -- cgit