Skip to content

Commit c3c2c6f

Browse files
committed
Make variable const pointer
1 parent dbdd631 commit c3c2c6f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/request_body_processor/multipart.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1638,7 +1638,7 @@ bool Multipart::process(const std::string& data, std::string *error,
16381638
}
16391639
} else { /* It looks like a boundary but */
16401640
/* we couldn't match it. */
1641-
char *p = NULL;
1641+
const char *p = NULL;
16421642

16431643
/* Check if an attempt to use quotes around the
16441644
* boundary was made. */

0 commit comments

Comments
 (0)