Fix a segfault due to a wrong order global variables of wget

This commit is contained in:
Moritz C. Weber 2022-03-29 13:10:00 +00:00 committed by Rob Landley
parent 1189bf9857
commit 4774d00a9f

View File

@ -77,8 +77,8 @@ config WGET_OPENSSL
#define WGET_IS_HTTPS (WGET_SSL && (strncmp(TT.url, "https://", 8) == 0))
GLOBALS(
char *O;
char *postdata;
char *O;
long max_redirect;
int sock;