c-hyper: poll the tasks until end correctly

... makes test 36 work.

Closes #6412
This commit is contained in:
Daniel Stenberg 2021-01-05 11:47:22 +01:00
parent 56b32b5d75
commit 25c1d5e6a8
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2
2 changed files with 3 additions and 3 deletions

View File

@ -329,7 +329,7 @@ CURLcode Curl_hyper_stream(struct Curl_easy *data,
hyper_error_free(hypererr);
break;
}
else if(h->init) {
else if(h->endtask == task) {
/* end of transfer */
*done = TRUE;
infof(data, "hyperstream is done!\n");
@ -341,7 +341,6 @@ CURLcode Curl_hyper_stream(struct Curl_easy *data,
}
/* HYPER_TASK_RESPONSE */
h->init = TRUE;
*didwhat = KEEP_RECV;
if(!resp) {
failf(data, "hyperstream: couldn't get response");
@ -403,6 +402,7 @@ CURLcode Curl_hyper_stream(struct Curl_easy *data,
result = CURLE_OUT_OF_MEMORY;
break;
}
h->endtask = foreach;
hyper_response_free(resp);
resp = NULL;

View File

@ -32,7 +32,7 @@ struct hyptransfer {
hyper_waker *write_waker;
hyper_waker *read_waker;
const hyper_executor *exec;
bool init;
hyper_task *endtask;
};
size_t Curl_hyper_recv(void *userp, hyper_context *ctx,