fix use of uninitialised value
[m6w6/ext-http] / php_http_misc.h
index 67fc711e2c96113bf72ed87a9e03dc10f5e62c1c..d8fa0c990f2742077d0e548b7c113a76c36247b3 100644 (file)
@@ -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);