Skip to content

Commit

Permalink
Update new_http.c
Browse files Browse the repository at this point in the history
  • Loading branch information
openshwprojects committed Jan 11, 2025
1 parent 9e2929d commit c71a570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/httpserver/new_http.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ void poststr_escaped(http_request_t* request, char* str) {
bool foundChar = false;
int len = strlen(str);

//Do a quick check if escaping is necessary
// Do a quick check if escaping is necessary
for (i = 0; (foundChar == false) && (i < len); i++) {
switch (str[i]) {
case '<':
Expand Down

0 comments on commit c71a570

Please sign in to comment.