From 0b5b7d3f65c22163a1bf1a9f2ba55e3965e47151 Mon Sep 17 00:00:00 2001 From: Florian Forster Date: Sat, 2 Dec 2006 17:51:58 +0100 Subject: [PATCH] src/utils_ignorelist.c: Fix build-problems when building without regex support. --- src/utils_ignorelist.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/utils_ignorelist.c b/src/utils_ignorelist.c index 27eb987c..532eb4b0 100644 --- a/src/utils_ignorelist.c +++ b/src/utils_ignorelist.c @@ -285,7 +285,6 @@ int ignorelist_add (ignorelist_t *il, const char *entry) { int ret; size_t entry_len; - char *entry_copy; if (il == NULL) { @@ -306,6 +305,8 @@ int ignorelist_add (ignorelist_t *il, const char *entry) /* regex string is enclosed in "/.../" */ if ((entry_len > 2) && (entry[0] == '/') && entry[entry_len - 1] == '/') { + char *entry_copy; + /* We need to copy `entry' since it's const */ entry_copy = smalloc (entry_len); memset (entry_copy, '\0', entry_len); -- 2.11.0