Commit e44e2294 authored by Antoine Cellerier's avatar Antoine Cellerier

Only skip \r or \n.

parent fd7f9a09
...@@ -577,8 +577,8 @@ httpd_HandlerCallBack( httpd_callback_sys_t *p_sys, httpd_client_t *cl, ...@@ -577,8 +577,8 @@ httpd_HandlerCallBack( httpd_callback_sys_t *p_sys, httpd_client_t *cl,
{ {
/* Apache-style */ /* Apache-style */
i_status = strtol( (char *)&answer->p_body[8], &psz_headers, 0 ); i_status = strtol( (char *)&answer->p_body[8], &psz_headers, 0 );
if( *psz_headers ) psz_headers++; if( *psz_headers == '\r' || *psz_headers == '\n' ) psz_headers++;
if( *psz_headers ) psz_headers++; if( *psz_headers == '\n' ) psz_headers++;
i_headers = answer->i_body - (psz_headers - (char *)answer->p_body); i_headers = answer->i_body - (psz_headers - (char *)answer->p_body);
} }
else else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment