Skip to content

Commit 243ac05

Browse files
author
Marc Stern
committed
Merge branch 'v2/mst/nullcheck2' of https://github.com/marcstern/ModSecurity into v2/mst/nullcheck2
2 parents d35018e + 62302c2 commit 243ac05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apache2/apache2_io.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ apr_status_t input_filter(ap_filter_t *f, apr_bucket_brigade *bb_out,
180180
*/
181181
apr_status_t read_request_body(modsec_rec *msr, char **error_msg) {
182182
assert(msr != NULL);
183-
assert( error_msg!= NULL);
183+
assert(error_msg!= NULL);
184184
request_rec *r = msr->r;
185185
unsigned int finished_reading;
186186
apr_bucket_brigade *bb_in;

0 commit comments

Comments
 (0)