Skip to content
Snippets Groups Projects
Commit 52e1ce95 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

fixed #1097019, multiple GET posts (-G) error

parent 8127a34f
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment