From d74ec7e0f301bbac9f7271d961846445c6a88d75 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 6 Jul 2020 22:51:15 -0400 Subject: Avoid copying message to match if no ignores are set --- ignore.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ignore.c b/ignore.c index f91b089..7fecb16 100644 --- a/ignore.c +++ b/ignore.c @@ -72,6 +72,7 @@ bool ignoreRemove(const char *pattern) { } enum Heat ignoreCheck(enum Heat heat, uint id, const struct Message *msg) { + if (!ignore.len) return heat; char match[512]; snprintf( match, sizeof(match), "%s!%s@%s %s %s %s", -- cgit 1.4.1