From: Felix Fietkau Date: Fri, 19 Apr 2024 18:04:54 +0000 (+0200) Subject: uclient: fix http regression X-Git-Url: http://git.openwrt.org/?p=project%2Fuclient.git;a=commitdiff_plain;h=HEAD uclient: fix http regression Signed-off-by: Felix Fietkau --- 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; }