From d8a8fa63b40801f597cc374bcfcbdd397aa0a670 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 29 Aug 2008 06:17:54 +0200 Subject: client: removed superfluous assertion client_defer_output() was modified so that it can create the deferred_send list. With this patch, the assertion on "deferred_send!=NULL" has become invalid. Remove it. --- src/client.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/client.c') diff --git a/src/client.c b/src/client.c index 5981cd73d..953037e1b 100644 --- a/src/client.c +++ b/src/client.c @@ -723,7 +723,6 @@ static void client_defer_output(struct client *client, struct sllnode **buf_r; assert(length > 0); - assert(client->deferred_send != NULL); client->deferred_bytes += sizeof(struct sllnode) + length; if (client->deferred_bytes > client_max_output_buffer_size) { -- cgit v1.2.3