diff --git a/CHANGES b/CHANGES index 27e93032..4b2db0cd 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +11 Apr 2007 - 2.1.1 +------------------- + + * Fix potential corruption of AuditLogParts when ctl:auditLogParts used. + 05 Apr 2007 - 2.1.1-rc2 ----------------------- diff --git a/apache2/re_actions.c b/apache2/re_actions.c index 58c47b5b..105547ed 100644 --- a/apache2/re_actions.c +++ b/apache2/re_actions.c @@ -646,7 +646,7 @@ static apr_status_t msre_action_ctl_execute(modsec_rec *msr, apr_pool_t *mptmp, if (*s != c) { *d++ = *s++; } else { - (*s)++; /* parens quiet compiler warning */ + s++; } } *d = '\0';