From f928dc6bbb0f583d04d03df83030c1e4c2dbbf3b Mon Sep 17 00:00:00 2001 From: Sree Kuchibhotla Date: Tue, 6 Oct 2015 17:40:02 -0700 Subject: Fix incorrect assert --- src/core/channel/compress_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/core/channel/compress_filter.c') diff --git a/src/core/channel/compress_filter.c b/src/core/channel/compress_filter.c index 182fbf18bf..c32f150715 100644 --- a/src/core/channel/compress_filter.c +++ b/src/core/channel/compress_filter.c @@ -242,7 +242,7 @@ static void process_send_ops(grpc_call_element *elem, GPR_ASSERT(calld->remaining_slice_bytes > 0); /* Increase input ref count, gpr_slice_buffer_add takes ownership. */ gpr_slice_buffer_add(&calld->slices, gpr_slice_ref(sop->data.slice)); - GPR_ASSERT(GPR_SLICE_LENGTH(sop->data.slice) >= + GPR_ASSERT(GPR_SLICE_LENGTH(sop->data.slice) <= calld->remaining_slice_bytes); calld->remaining_slice_bytes -= (gpr_uint32)GPR_SLICE_LENGTH(sop->data.slice); -- cgit v1.2.3