diff options
Diffstat (limited to '')
-rw-r--r-- | src/extstring.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |