summaryrefslogtreecommitdiff
path: root/main/http.c
diff options
context:
space:
mode:
authorTerry Wilson <twilson@digium.com>2010-06-15 21:42:33 +0000
committerTerry Wilson <twilson@digium.com>2010-06-15 21:42:33 +0000
commitde18661beeda1c0d868a76157e970001b98e1b1a (patch)
tree271dbcbee76917fcec3b31228017720b205d9b63 /main/http.c
parentfb71a38a41abfc3de4e29a660cf574431e4a25d3 (diff)
Don't continue sending the file when there has been an error
If there is a problem with a firmware file, Polycom phones will close the connection. We were continuing to send the file anyway. There should be no reason to continue sending a file if there is an error writing it. (closes issue #16682) Reported by: lmadsen git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@270692 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/http.c')
-rw-r--r--main/http.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/main/http.c b/main/http.c
index 89bde8679..dcbfc4d66 100644
--- a/main/http.c
+++ b/main/http.c
@@ -415,6 +415,7 @@ void ast_http_send(struct ast_tcptls_session_instance *ser,
while ((len = read(fd, buf, sizeof(buf))) > 0) {
if (fwrite(buf, len, 1, ser->f) != 1) {
ast_log(LOG_WARNING, "fwrite() failed: %s\n", strerror(errno));
+ break;
}
}
}