summaryrefslogtreecommitdiff
path: root/http.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-03-26 16:55:34 +0000
committerRussell Bryant <russell@russellbryant.com>2006-03-26 16:55:34 +0000
commite85d63aa1166efddf1681434086f665cb31b3a1d (patch)
treece32fae4bf19b740442ce8e2e1d4b1705aa286cb /http.c
parent813ab1aff0af687e12e034116efae2d67d17e7b0 (diff)
use ast_calloc instead of calloc, and do a little bit of tweaking on the code formatting
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@15026 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'http.c')
-rw-r--r--http.c26
1 files changed, 12 insertions, 14 deletions
diff --git a/http.c b/http.c
index fca076327..cdcde76a8 100644
--- a/http.c
+++ b/http.c
@@ -297,23 +297,21 @@ static void *http_root(void *data)
ast_log(LOG_WARNING, "Accept failed: %s\n", strerror(errno));
continue;
}
- ser = calloc(1, sizeof(*ser));
- if (ser) {
- ser->fd = fd;
- if ((ser->f = fdopen(ser->fd, "w+"))) {
- if (ast_pthread_create(&launched, NULL, ast_httpd_helper_thread, ser)) {
- ast_log(LOG_WARNING, "Unable to launch helper thread: %s\n", strerror(errno));
- fclose(ser->f);
- free(ser);
- }
- } else {
- ast_log(LOG_WARNING, "fdopen failed!\n");
- close(ser->fd);
+ if (!(ser = ast_calloc(1, sizeof(*ser)))) {
+ close(fd);
+ continue;
+ }
+ ser->fd = fd;
+ if ((ser->f = fdopen(ser->fd, "w+"))) {
+ if (ast_pthread_create(&launched, NULL, ast_httpd_helper_thread, ser)) {
+ ast_log(LOG_WARNING, "Unable to launch helper thread: %s\n", strerror(errno));
+ fclose(ser->f);
free(ser);
}
} else {
- ast_log(LOG_WARNING, "Out of memory!\n");
- close(fd);
+ ast_log(LOG_WARNING, "fdopen failed!\n");
+ close(ser->fd);
+ free(ser);
}
}
return NULL;