From aa0fc403f7f81dedfa3fe22235aecceaf7b91e27 Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Mon, 24 Feb 2020 20:54:28 +0100 Subject: sprintf is bav --- src/ft_get_map.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'src/ft_get_map.c') diff --git a/src/ft_get_map.c b/src/ft_get_map.c index cb677da..f609c50 100644 --- a/src/ft_get_map.c +++ b/src/ft_get_map.c @@ -54,8 +54,7 @@ static int8_t ((clist->mlist->map_w + 1) * i) * sizeof(char), ((clist->mlist->map_w + 1) * (i + 1)) * sizeof(char)))) { - ft_strlcpy(clist->errmsg, FT_ERR_ALLOCATE, - ft_strlen(FT_ERR_ALLOCATE) + 1); + ft_sprintf(clist->errmsg, "%s", FT_ERR_ALLOCATE); return (-1); } ft_linecpy(line, clist->mlist->mapl, (clist->mlist->map_w + 1) * i); @@ -69,14 +68,14 @@ int if (!line[0]) { ft_memdel((void**)&line); - ft_strlcpy(clist->errmsg, FT_ERR_READ, ft_strlen(FT_ERR_READ) + 1); + ft_sprintf(clist->errmsg, "%s", FT_ERR_READ); return (-1); } clist->mlist->map_w = ft_get_line_len(line); if (ft_check_map_line(line, 1, clist) < 0) { ft_memdel((void**)&line); - ft_strlcpy(clist->errmsg, FT_ERR_READ, ft_strlen(FT_ERR_READ) + 1); + ft_sprintf(clist->errmsg, "%s", FT_ERR_READ); return (-1); } ft_memdel((void**)&clist->mlist->mapl); -- cgit v1.2.3