[FFmpeg-cvslog] ffserver: factor out connection closing from handler
Reynaldo H. Verdejo Pinochet
git at videolan.org
Fri Feb 14 18:37:21 CET 2014
ffmpeg | branch: master | Reynaldo H. Verdejo Pinochet <r.verdejo at sisa.samsung.com> | Thu Feb 13 03:24:16 2014 -0300| [ba6186d6eb316029f0ab3ced89072dfab2282bf7] | committer: Reynaldo H. Verdejo Pinochet
ffserver: factor out connection closing from handler
Signed-off-by: Reynaldo H. Verdejo Pinochet <r.verdejo at sisa.samsung.com>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=ba6186d6eb316029f0ab3ced89072dfab2282bf7
---
ffserver.c | 18 ++++++++----------
1 file changed, 8 insertions(+), 10 deletions(-)
diff --git a/ffserver.c b/ffserver.c
index d57aa31..f6fb082 100644
--- a/ffserver.c
+++ b/ffserver.c
@@ -1003,9 +1003,7 @@ static int handle_connection(HTTPContext *c)
if (len < 0) {
if (ff_neterrno() != AVERROR(EAGAIN) &&
ff_neterrno() != AVERROR(EINTR)) {
- /* error : close connection */
- av_freep(&c->pb_buffer);
- return -1;
+ goto close_connection;
}
} else {
c->buffer_ptr += len;
@@ -1063,10 +1061,8 @@ static int handle_connection(HTTPContext *c)
break;
case RTSPSTATE_SEND_REPLY:
- if (c->poll_entry->revents & (POLLERR | POLLHUP)) {
- av_freep(&c->pb_buffer);
- return -1;
- }
+ if (c->poll_entry->revents & (POLLERR | POLLHUP))
+ goto close_connection;
/* no need to write if no events */
if (!(c->poll_entry->revents & POLLOUT))
return 0;
@@ -1074,9 +1070,7 @@ static int handle_connection(HTTPContext *c)
if (len < 0) {
if (ff_neterrno() != AVERROR(EAGAIN) &&
ff_neterrno() != AVERROR(EINTR)) {
- /* error : close connection */
- av_freep(&c->pb_buffer);
- return -1;
+ goto close_connection;
}
} else {
c->buffer_ptr += len;
@@ -1121,6 +1115,10 @@ static int handle_connection(HTTPContext *c)
return -1;
}
return 0;
+
+close_connection:
+ av_freep(&c->pb_buffer);
+ return -1;
}
static int extract_rates(char *rates, int ratelen, const char *request)
More information about the ffmpeg-cvslog
mailing list