From e8780fa7792aaa2d68af21c0df91cd9c05e1f73a Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Fri, 19 Apr 2024 20:04:54 +0200 Subject: [PATCH] uclient: fix http regression Signed-off-by: Felix Fietkau --- uclient-http.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/uclient-http.c b/uclient-http.c index 861aefb..deeb456 100644 --- a/uclient-http.c +++ b/uclient-http.c @@ -827,7 +827,6 @@ static int uclient_setup_http(struct uclient_http *uh) int ret; memset(&uh->ufd, 0, sizeof(uh->ufd)); - ustream_fd_init(&uh->ufd, uh->fd); uh->us = us; uh->ssl = false; @@ -840,6 +839,8 @@ static int uclient_setup_http(struct uclient_http *uh) if (ret) return UCLIENT_ERROR_CONNECT; + ustream_fd_init(&uh->ufd, uh->fd); + return 0; } -- 2.30.2