From: Anatol Belski Date: Mon, 15 Sep 2014 15:51:07 +0000 (+0200) Subject: fix signed/unsigned mismatch X-Git-Tag: PRE_NATIVE_TLS_MERGE~158^2~85^2~15 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dc37e089e3bcbe4548bf9093251b0f0ee4823844;p=php fix signed/unsigned mismatch --- diff --git a/main/SAPI.c b/main/SAPI.c index 750b95cc0f..4771ea7d02 100644 --- a/main/SAPI.c +++ b/main/SAPI.c @@ -739,7 +739,7 @@ SAPI_API int sapi_header_op(sapi_header_op_enum op, void *arg TSRMLS_DC) return SUCCESS; } else { /* new line/NUL character safety check */ - int i; + uint i; for (i = 0; i < header_line_len; i++) { /* RFC 2616 allows new lines if followed by SP or HT */ int illegal_break =