From d778fbf8b75575b558d79564d9d3d6cc108905c8 Mon Sep 17 00:00:00 2001 From: Ervin Hegedus Date: Wed, 7 Feb 2024 23:06:16 +0100 Subject: [PATCH] Revert "Ignore (consistently) empty actions" --- apache2/re.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/apache2/re.c b/apache2/re.c index 9c9c538e..ace655df 100644 --- a/apache2/re.c +++ b/apache2/re.c @@ -1058,12 +1058,6 @@ int msre_parse_generic(apr_pool_t *mp, const char *text, apr_table_t *vartable, /* ignore whitespace */ while(isspace(*p)) p++; if (*p == '\0') return count; - - /* ignore empty action */ - if (*p == ',') { - p++; - continue; - } /* we are at the beginning of the name */ name = p;