From 57a1dda8f31878282e554bb98d5cc81307edea49 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 4 Sep 2014 13:19:59 +0200 Subject: [PATCH] http: terminate old connection in uclient_http_connect after incomplete request processing Signed-off-by: Felix Fietkau --- uclient-http.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/uclient-http.c b/uclient-http.c index ff1bcc4..7c5bc63 100644 --- a/uclient-http.c +++ b/uclient-http.c @@ -797,6 +797,9 @@ static int uclient_http_connect(struct uclient *cl) struct uclient_http *uh = container_of(cl, struct uclient_http, uc); int ret; + if (!cl->eof || uh->disconnect) + uclient_http_disconnect(uh); + uclient_http_init_request(uh); if (uh->us) -- 2.30.2