From: Jaroslav Kysela Date: Thu, 21 Apr 2016 13:47:22 +0000 (+0200) Subject: http client: increase max. temporary buffer size limit for SAT>IP RTSP embedded data X-Git-Tag: v4.2.1~614 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c3eefc6e2f3bd6a5b9eb44bf9bb5f7b47b39ddd9;p=thirdparty%2Ftvheadend.git http client: increase max. temporary buffer size limit for SAT>IP RTSP embedded data --- diff --git a/src/httpc.c b/src/httpc.c index da91f9a45..de5ea527e 100644 --- a/src/httpc.c +++ b/src/httpc.c @@ -980,7 +980,7 @@ retry: } if (hc->hc_rsize < r + hc->hc_rpos) { - if (hc->hc_rsize + r > hc->hc_io_size + 16*1024) + if (hc->hc_rsize + r > hc->hc_io_size + 20*1024) return http_client_flush(hc, -EMSGSIZE); hc->hc_rsize += r; hc->hc_rbuf = realloc(hc->hc_rbuf, hc->hc_rsize + 1);