Bill,
no to pick in details but in your latest fix
> Index: ssl_engine_io.c
> ===================================================================
> RCS file: /home/cvs/httpd-2.0/modules/ssl/ssl_engine_io.c,v
> retrieving revision 1.10
> retrieving revision 1.11
> diff -u -r1.10 -r1.11
> --- ssl_engine_io.c 2001/07/31 03:04:55 1.10
> +++ ssl_engine_io.c 2001/07/31 16:41:13 1.11
> @@ -280,10 +280,9 @@
> return APR_SUCCESS;
> }
>
> - assert(len > 0);
> -
> - n = BIO_write (pRec->pbioRead, data, len);
> - assert(n == len);
> + n = BIO_write (pRec->pbioRead, data, len);
> +
> + assert(n >= 0 && (apr_size_t)n == len);
>
> ssl_hook_process_connection (pRec);
wouldn't it be easier and bit cleaner to simply declare n as apr_size_t?
apr_size_t n;
Julius
RE: cvs commit: httpd-2.0/modules/ssl ssl_engine_io.c
GAWLAS,JULIUS (HP-Cupertino,ex1) Tue, 31 Jul 2001 09:27:08 -0700
- Re: cvs commit: httpd-2.0/modules... GAWLAS,JULIUS (HP-Cupertino,ex1)
- Re: cvs commit: httpd-2.0/mo... William A. Rowe, Jr.
- RE: cvs commit: httpd-2.0/mo... MATHIHALLI,MADHUSUDAN (HP-Cupertino,ex1)
- RE: cvs commit: httpd-2.... Doug MacEachern
