http2: only do the *done() cleanups for HTTP

Follow-up to ef86daf4d3

Closes #5650
Fixes #5646
This commit is contained in:
Daniel Stenberg 2020-07-04 00:10:04 +02:00
Родитель 0fda8db95c
Коммит 69bfde4515
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 5CC908FDB71E12C2
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -1174,7 +1174,8 @@ void Curl_http2_done(struct Curl_easy *data, bool premature)
http->push_headers = NULL;
}
if(!httpc->h2) /* not HTTP/2 ? */
if(!(data->conn->handler->protocol&PROTO_FAMILY_HTTP) ||
!httpc->h2) /* not HTTP/2 ? */
return;
if(premature) {