diff options
author | Craig Tiller <ctiller@google.com> | 2016-09-29 09:44:51 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-09-29 09:44:51 -0700 |
commit | 14d4b9c5457508e435daa6e96c6b2f6d361725a3 (patch) | |
tree | 942528fcfd69a6c70b9923d7ac68aa4be9df82ad /src/core/ext | |
parent | af541d82328e01af0d1cb99097491e48a6d2a601 (diff) |
Fix memory leak
Diffstat (limited to 'src/core/ext')
-rw-r--r-- | src/core/ext/transport/chttp2/transport/writing.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/ext/transport/chttp2/transport/writing.c b/src/core/ext/transport/chttp2/transport/writing.c index bc490569b7..ebdbce1bfd 100644 --- a/src/core/ext/transport/chttp2/transport/writing.c +++ b/src/core/ext/transport/chttp2/transport/writing.c @@ -70,6 +70,7 @@ static void update_list(grpc_exec_ctx *exec_ctx, grpc_chttp2_transport *t, } cb = next; } + GRPC_ERROR_UNREF(error); } bool grpc_chttp2_begin_write(grpc_exec_ctx *exec_ctx, |