From bc9ce51eb535fcf649586818a3813c63107d094a Mon Sep 17 00:00:00 2001 From: robs Date: Tue, 20 Nov 2001 01:52:37 +0000 Subject: [PATCH] remove useless assert --- fcgi_protocol.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fcgi_protocol.c b/fcgi_protocol.c index 73bc4fd..9d686ce 100644 --- a/fcgi_protocol.c +++ b/fcgi_protocol.c @@ -1,5 +1,5 @@ /* - * $Id: fcgi_protocol.c,v 1.20 2001/11/09 21:49:15 robs Exp $ + * $Id: fcgi_protocol.c,v 1.21 2001/11/20 01:52:37 robs Exp $ */ @@ -22,7 +22,6 @@ static void queue_header(fcgi_request *fr, unsigned char type, unsigned int len) ap_assert(type > 0); ap_assert(type <= FCGI_MAXTYPE); - ap_assert(len >= 0); ap_assert(len <= 0xffff); ap_assert(BufferFree(fr->serverOutputBuffer) >= sizeof(FCGI_Header)); -- 2.11.4.GIT