From: Kevin P. Fleming Date: Thu, 8 Mar 2007 13:23:46 +0000 (+0000) Subject: this change was not needed; fclose() handles closing the file descriptor already X-Git-Tag: 1.4.2~48 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=690da7f07406fd8651278dc69b4ea64bf3b8d457;p=thirdparty%2Fasterisk.git this change was not needed; fclose() handles closing the file descriptor already git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@58354 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/http.c b/main/http.c index 772b0e39c3..3f8f747ac4 100644 --- a/main/http.c +++ b/main/http.c @@ -497,7 +497,6 @@ static void *ast_httpd_helper_thread(void *data) free(title); } fclose(ser->f); - close(ser->fd); free(ser); return NULL; } @@ -539,7 +538,6 @@ static void *http_root(void *data) if (ast_pthread_create_background(&launched, &attr, ast_httpd_helper_thread, ser)) { ast_log(LOG_WARNING, "Unable to launch helper thread: %s\n", strerror(errno)); fclose(ser->f); - close(ser->fd); free(ser); } pthread_attr_destroy(&attr);