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.
This commit is contained in:
Max Kellermann 2008-08-29 06:17:54 +02:00
parent 7858081eda
commit d8a8fa63b4

View File

@ -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) {