X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_message_body.c;h=fa9155110d776d37a0e1e26bed4ec5ef627acee6;hp=ab1ec29bdc00b348cb360c5c5143f0fd1bf68c7a;hb=27b7c648120c1f061ba7c494441347cdb891eea4;hpb=d67af7f8dc8100a72ce2d5706c7d2f8d0d89796f diff --git a/php_http_message_body.c b/php_http_message_body.c index ab1ec29..fa91551 100644 --- a/php_http_message_body.c +++ b/php_http_message_body.c @@ -486,11 +486,9 @@ static size_t splitbody(void *opaque, char *buf, size_t len TSRMLS_DC) } if (!first_boundary) { - int st; /* this is not the first boundary, read rest of this message */ php_http_buffer_append(&arg->buf, buf, real_boundary - buf); - st=php_http_message_parser_parse(arg->parser, &arg->buf, 0, &arg->parser->message); - //fprintf(stderr, "1 st=%d\n",st); + php_http_message_parser_parse(arg->parser, &arg->buf, 0, &arg->parser->message); } /* move after the boundary */ @@ -530,11 +528,9 @@ static size_t splitbody(void *opaque, char *buf, size_t len TSRMLS_DC) /* let there be room for the next boundary */ if (len > arg->boundary_len) { - int st; consumed += len - arg->boundary_len; php_http_buffer_append(&arg->buf, buf, len - arg->boundary_len); - st=php_http_message_parser_parse(arg->parser, &arg->buf, 0, &arg->parser->message); - //fprintf(stderr, "2 st=%d\n", st); + php_http_message_parser_parse(arg->parser, &arg->buf, 0, &arg->parser->message); } arg->consumed += consumed;