diff options
author | Craig Tiller <ctiller@google.com> | 2017-06-08 08:09:35 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-06-08 08:09:35 -0700 |
commit | f21acddbb1ac4821af1641cf36d9e87404ec029d (patch) | |
tree | aeced14a4dc8132e2ec7ad6de254952626f3add6 /src/core/lib | |
parent | 747216fcef5645cf99d4e366da4c2b75483f80bf (diff) |
Fix depth counting bug
Diffstat (limited to 'src/core/lib')
-rw-r--r-- | src/core/lib/iomgr/executor.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/lib/iomgr/executor.c b/src/core/lib/iomgr/executor.c index c40aca3aa7..7621a7fe75 100644 --- a/src/core/lib/iomgr/executor.c +++ b/src/core/lib/iomgr/executor.c @@ -64,6 +64,7 @@ static size_t run_closures(grpc_exec_ctx *exec_ctx, grpc_closure_list list) { c->cb(exec_ctx, c->cb_arg, error); GRPC_ERROR_UNREF(error); c = next; + n++; } return n; |