We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4ecaede + 9dde06d commit 8cbad49Copy full SHA for 8cbad49
http-push.c
@@ -526,8 +526,8 @@ static void finish_request(struct transfer_request *request)
526
if (request->headers != NULL)
527
curl_slist_free_all(request->headers);
528
529
- /* URL is reused for MOVE after PUT */
530
- if (request->state != RUN_PUT) {
+ /* URL is reused for MOVE after PUT and used during FETCH */
+ if (request->state != RUN_PUT && request->state != RUN_FETCH_PACKED) {
531
FREE_AND_NULL(request->url);
532
}
533
0 commit comments