aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/transport
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-07-11 22:05:07 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-07-11 22:05:07 -0700
commit5beba2818e9a2436dcf410ac6d4c6886cb00444c (patch)
tree309d9b8c74fa9d3aa94f53aaae679b92d631bc98 /src/core/ext/transport
parent9dc01dd44d169811141853b47d6331e4c3a4245b (diff)
fixes
Diffstat (limited to 'src/core/ext/transport')
-rw-r--r--src/core/ext/transport/chttp2/transport/chttp2_transport.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/ext/transport/chttp2/transport/chttp2_transport.c b/src/core/ext/transport/chttp2/transport/chttp2_transport.c
index 28f27c271d..91ca2683e0 100644
--- a/src/core/ext/transport/chttp2/transport/chttp2_transport.c
+++ b/src/core/ext/transport/chttp2/transport/chttp2_transport.c
@@ -31,9 +31,6 @@
*
*/
-// TODO(ctiller): schedule check_read_ops whenever something is added to that
-// list
-
#include "src/core/ext/transport/chttp2/transport/chttp2_transport.h"
#include <math.h>
@@ -1816,7 +1813,8 @@ static void reading_action_locked(grpc_exec_ctx *exec_ctx, void *tp,
grpc_chttp2_stream_map_move_into(&t->new_stream_map,
&t->parsing_stream_map);
grpc_chttp2_prepare_to_read(transport_global, transport_parsing);
- grpc_exec_ctx_sched(exec_ctx, &t->parsing_action, error, NULL);
+ grpc_exec_ctx_sched(exec_ctx, &t->parsing_action, GRPC_ERROR_REF(error),
+ NULL);
} else {
post_reading_action_locked(exec_ctx, t, GRPC_ERROR_REF(error));
}