From: Philipp Stephani Date: Tue, 25 Oct 2016 21:41:20 +0000 (+0200) Subject: Remove wrong assertion X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0875d8deee03e7269039d37ed31be71695a64b7c;p=emacs.git Remove wrong assertion It’s totally fine to free a channel that still buffers something. --- diff --git a/src/alloc.c b/src/alloc.c index 10b6c20e3e4..e999d22fc07 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -6947,7 +6947,6 @@ sweep_misc (void) { Channel *channel = mblk->markers[i].m.u_channel.channel; eassert (channel != NULL); - eassert (channel->nbuf == 0); eassert (channel->asend.n == 0); eassert (channel->arecv.n == 0); chanfree (channel);