From 1e211db02f116d0ddd7c67ab5db2ebf237a7f5fd Mon Sep 17 00:00:00 2001 From: starnakin Date: Thu, 29 Jun 2023 14:05:24 +0200 Subject: [PATCH] fix: add return to fill_tab --- src/utils/split_quoted.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/utils/split_quoted.c b/src/utils/split_quoted.c index b482ee1..743ec76 100644 --- a/src/utils/split_quoted.c +++ b/src/utils/split_quoted.c @@ -52,6 +52,7 @@ int fill_tab(char **tab, const char* str, const char* charset) } len++; } + return 0; } char **split_quoted_charset(const char *str, const char *charset)