summaryrefslogtreecommitdiffstats
path: root/stream/network.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream/network.c')
-rw-r--r--stream/network.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/stream/network.c b/stream/network.c
index 1390838a1a..653409f421 100644
--- a/stream/network.c
+++ b/stream/network.c
@@ -178,7 +178,7 @@ http_send_request( URL_t *url, off_t pos ) {
HTTP_header_t *http_hdr;
URL_t *server_url;
char str[256];
- int fd;
+ int fd = -1;
int ret;
int proxy = 0; // Boolean
@@ -245,6 +245,7 @@ http_send_request( URL_t *url, off_t pos ) {
return fd;
err_out:
+ if (fd > 0) closesocket(fd);
http_free(http_hdr);
if (proxy && server_url)
url_free(server_url);