Dummy Shutdown should still unref the error

pull/17918/head
Yash Tibrewal 6 years ago
parent 4286279b64
commit f37e18b8fd
  1. 4
      src/core/lib/iomgr/buffer_list.h

@ -148,7 +148,9 @@ class TracedBuffer {
public:
/* Dummy shutdown function */
static void Shutdown(grpc_core::TracedBuffer** head, void* remaining,
grpc_error* shutdown_err) {}
grpc_error* shutdown_err) {
GRPC_ERROR_UNREF(shutdown_err);
}
};
#endif /* GRPC_LINUX_ERRQUEUE */

Loading…
Cancel
Save