From 27bb394bc0bf2ca66d06931bf1e73a3e20d5741a Mon Sep 17 00:00:00 2001 From: axtloss Date: Thu, 26 Sep 2024 15:15:16 +0200 Subject: Add author section to manpages --- src/extstring.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/extstring.c') diff --git a/src/extstring.c b/src/extstring.c index 044e368..2fea204 100644 --- a/src/extstring.c +++ b/src/extstring.c @@ -83,7 +83,7 @@ replace_str (char *s, char *old, char *replace) } } - result = (char *) malloc_secure (i + cnt * (new_size - old_size) + 1); + result = (char *) malloc (i + cnt * (new_size - old_size) + 1); i = 0; while (*s) -- cgit v1.2.3