http2: Stop drain from being permanently set on 74/214574/1 accepted/tizen/base/20190929.221333 submit/tizen_base/20190924.062848
authorSeonah Moon <seonah1.moon@samsung.com>
Tue, 24 Sep 2019 06:25:37 +0000 (15:25 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Tue, 24 Sep 2019 06:25:39 +0000 (15:25 +0900)
commit4f3fa80d379be530352347c7bd7fb87de4e4669f
treed3a941b22a453b2b795064b45981f8232504ded7
parenta4bb8ac9a00e106b797056bd699547873bd4564b
http2: Stop drain from being permanently set on

Various functions called within Curl_http2_done() can have the
side-effect of setting the Easy connection into drain mode (by calling
drain_this()).  However, the last time we unset this for a transfer (by
calling drained_transfer()) is at the beginning of Curl_http2_done().
If the Curl_easy is reused for another transfer, it is then stuck in
drain mode permanently, which in practice makes it unable to write any
data in the new transfer.

This fix moves the last call to drained_transfer() to later in
Curl_http2_done(), after the functions that could potentially call for a
drain.

Fixes #3966
Reported-by: Josie-H
Change-Id: I83ee02bf9017c9aa3d27d50580a0f89b8ec1d05d
lib/http2.c