mirror of
https://github.com/moparisthebest/curl
synced 2024-12-21 15:48:49 -05:00
fixed #1097019, multiple GET posts (-G) error
This commit is contained in:
parent
8127a34f98
commit
52e1ce9518
@ -3787,9 +3787,6 @@ show_error:
|
||||
if(headerfilep)
|
||||
fclose(headerfilep);
|
||||
|
||||
if (httpgetfields)
|
||||
free(httpgetfields);
|
||||
|
||||
if(url)
|
||||
free(url);
|
||||
|
||||
@ -3832,6 +3829,9 @@ show_error:
|
||||
} /* while-loop through all URLs */
|
||||
|
||||
quit_curl:
|
||||
if (httpgetfields)
|
||||
free(httpgetfields);
|
||||
|
||||
if (config->engine)
|
||||
free(config->engine);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user