X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=blobdiff_plain;f=contrib%2Fpackage%2Fuhttpd%2Fsrc%2Fuhttpd-file.c;h=f0379bccc1b58082610ff41b683bc311e179ac71;hp=e8ea1746493b784d087ee497e3d16a466d669698;hb=79dde1ad3fd240ec084b4b9c160c95e6c82336ee;hpb=707f9dd2d0979f655e583031d81284aff499f1ac;ds=sidebyside diff --git a/contrib/package/uhttpd/src/uhttpd-file.c b/contrib/package/uhttpd/src/uhttpd-file.c index e8ea17464..f0379bccc 100644 --- a/contrib/package/uhttpd/src/uhttpd-file.c +++ b/contrib/package/uhttpd/src/uhttpd-file.c @@ -349,7 +349,8 @@ void uh_file_request(struct client *cl, struct http_request *req, struct path_in /* pump file data */ while( (rlen = read(fd, buf, sizeof(buf))) > 0 ) { - uh_http_send(cl, req, buf, rlen); + if( uh_http_send(cl, req, buf, rlen) < 0 ) + break; } /* send trailer in chunked mode */