X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=php_http_misc.h;h=d8fa0c990f2742077d0e548b7c113a76c36247b3;hb=c3aaed076e9439cf8ec12f02474746da56796bba;hp=67fc711e2c96113bf72ed87a9e03dc10f5e62c1c;hpb=7b028d0cbb030f9610084314f67b77907d8474a2;p=m6w6%2Fext-http diff --git a/php_http_misc.h b/php_http_misc.h index 67fc711..d8fa0c9 100644 --- a/php_http_misc.h +++ b/php_http_misc.h @@ -137,7 +137,7 @@ static inline const char *php_http_locate_bin_eol(const char *bin, size_t len, i { const char *eol; - for (eol = bin; eol - bin <= len; ++eol) { + for (eol = bin; eol - bin < len; ++eol) { if (*eol == '\r' || *eol == '\n') { if (eol_len) { *eol_len = ((eol[0] == '\r' && eol[1] == '\n') ? 2 : 1);