aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-07-01 15:41:52 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-07-01 15:41:52 -0700
commit0e640a8cb22634b51a2e7e0d193449341ac92663 (patch)
treec6d57c2c2e8a2224fd0f9bc8201037feedbd5453 /src/core
parent39fa7db46b22850882d9e44c2afbf9204532957c (diff)
Properly reset counter
Diffstat (limited to 'src/core')
-rw-r--r--src/core/transport/chttp2_transport.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/transport/chttp2_transport.c b/src/core/transport/chttp2_transport.c
index 94659a6bdf..c7e9b3e13f 100644
--- a/src/core/transport/chttp2_transport.c
+++ b/src/core/transport/chttp2_transport.c
@@ -908,6 +908,7 @@ static void recv_data(void *tp, gpr_slice *slices, size_t nslices,
if (t->parsing.initial_window_update != 0) {
grpc_chttp2_stream_map_for_each(&t->parsing_stream_map,
update_global_window, t);
+ t->parsing.initial_window_update = 0;
}
/* handle higher level things */
grpc_chttp2_publish_reads(&t->global, &t->parsing);