mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-30 03:34:29 +03:00
Revert "Ignore (consistently) empty actions"
This commit is contained in:
@@ -1059,12 +1059,6 @@ int msre_parse_generic(apr_pool_t *mp, const char *text, apr_table_t *vartable,
|
|||||||
while(isspace(*p)) p++;
|
while(isspace(*p)) p++;
|
||||||
if (*p == '\0') return count;
|
if (*p == '\0') return count;
|
||||||
|
|
||||||
/* ignore empty action */
|
|
||||||
if (*p == ',') {
|
|
||||||
p++;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* we are at the beginning of the name */
|
/* we are at the beginning of the name */
|
||||||
name = p;
|
name = p;
|
||||||
while((*p != '\0')&&(*p != '|')&&(*p != ':')&&(*p != ',')&&(!isspace(*p))) p++; /* ENH replace with isvarnamechar() */
|
while((*p != '\0')&&(*p != '|')&&(*p != ':')&&(*p != ',')&&(!isspace(*p))) p++; /* ENH replace with isvarnamechar() */
|
||||||
|
Reference in New Issue
Block a user