From: Daniel Stenberg Date: Tue, 7 Feb 2023 11:15:26 +0000 (+0100) Subject: tool_operate: move the 'updated' variable X-Git-Tag: curl-7_88_0~53 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=95fe2bba743464d5557fb4b4365b00cc37c29fcd;p=thirdparty%2Fcurl.git tool_operate: move the 'updated' variable This was already done by Dan Fandrich in the previous PR but somehow I lost that fixup. Follow-up to 349c5391f2121e --- diff --git a/src/tool_operate.c b/src/tool_operate.c index ae17586d8c..c9583b850f 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -1208,7 +1208,6 @@ static CURLcode single_transfer(struct GlobalConfig *global, char *q = httpgetfields ? httpgetfields : config->query; CURLU *uh = curl_url(); if(uh) { - char *updated; CURLUcode uerr; uerr = curl_url_set(uh, CURLUPART_URL, per->this_url, CURLU_GUESS_SCHEME); @@ -1219,6 +1218,7 @@ static CURLcode single_transfer(struct GlobalConfig *global, config->synthetic_error = TRUE; } else { + char *updated = NULL; uerr = curl_url_set(uh, CURLUPART_QUERY, q, CURLU_APPENDQUERY); if(!uerr) uerr = curl_url_get(uh, CURLUPART_URL, &updated,